From 3e7a20469e2898addd319fdc2fc5f350724fab24 Mon Sep 17 00:00:00 2001 From: Eklavya Mirani Date: Fri, 8 Apr 2016 14:11:29 +0530 Subject: [PATCH 001/117] adjusted the send a tweet's maximum character limit to accomodate hashtags and via @code. --- .../parts/feedback/browser/feedback.ts | 24 +++++++++++++------ .../electron-browser/feedbackStatusbarItem.ts | 23 +++++++++++++++++- 2 files changed, 39 insertions(+), 8 deletions(-) diff --git a/src/vs/workbench/parts/feedback/browser/feedback.ts b/src/vs/workbench/parts/feedback/browser/feedback.ts index b7a8a24a859..873d735a0cb 100644 --- a/src/vs/workbench/parts/feedback/browser/feedback.ts +++ b/src/vs/workbench/parts/feedback/browser/feedback.ts @@ -21,6 +21,7 @@ export interface IFeedback { export interface IFeedbackService { submitFeedback(feedback: IFeedback): void; + getCharacterLimit(sentiment: number): number; } export interface IFeedbackDropdownOptions { @@ -35,7 +36,7 @@ enum FormEvent { } export class FeedbackDropdown extends Dropdown { - protected static MAX_FEEDBACK_CHARS: number = 140; + protected maxFeedbackCharacters: number; protected feedback: string; protected sentiment: number; @@ -50,6 +51,7 @@ export class FeedbackDropdown extends Dropdown { protected smileyInput: Builder; protected frownyInput: Builder; protected sendButton: Builder; + protected remainingCharacterCount: Builder; protected requestFeatureLink: string; protected reportIssueLink: string; @@ -75,6 +77,7 @@ export class FeedbackDropdown extends Dropdown { this.feedback = ''; this.sentiment = 1; + this.maxFeedbackCharacters = this.feedbackService.getCharacterLimit(this.sentiment); this.feedbackForm = null; this.feedbackDescriptionInput = null; @@ -147,21 +150,20 @@ export class FeedbackDropdown extends Dropdown { $('div').append($('a').attr('target', '_blank').attr('href', this.requestFeatureLink).text(nls.localize("request a missing feature", "Request a missing feature")).attr('tabindex', '0')) .appendTo($contactUsContainer); - let $charCounter = $('span.char-counter').text(this.getCharCountText(0)); + this.remainingCharacterCount = $('span.char-counter').text(this.getCharCountText(0)); $('h3').text(nls.localize("tell us why?", "Tell us why?")) - .append($charCounter) + .append(this.remainingCharacterCount) .appendTo($form); this.feedbackDescriptionInput = $('textarea.feedback-description').attr({ rows: 3, - maxlength: FeedbackDropdown.MAX_FEEDBACK_CHARS, + maxlength: this.maxFeedbackCharacters, 'aria-label': nls.localize("commentsHeader", "Comments") }) .text(this.feedback).attr('required', 'required') .on('keyup', () => { - $charCounter.text(this.getCharCountText(this.feedbackDescriptionInput.value.length)); - this.feedbackDescriptionInput.value ? this.sendButton.removeAttribute('disabled') : this.sendButton.attr('disabled', ''); + this.updateCharCountText(); }) .appendTo($form).domFocus().getHTMLElement(); @@ -185,7 +187,7 @@ export class FeedbackDropdown extends Dropdown { } private getCharCountText(charCount: number): string { - let remaining = FeedbackDropdown.MAX_FEEDBACK_CHARS - charCount; + let remaining = this.maxFeedbackCharacters - charCount; let text = (remaining === 1) ? nls.localize("character left", "character left") : nls.localize("characters left", "characters left"); @@ -193,6 +195,11 @@ export class FeedbackDropdown extends Dropdown { return '(' + remaining + ' ' + text + ')'; } + private updateCharCountText(): void { + this.remainingCharacterCount.text(this.getCharCountText(this.feedbackDescriptionInput.value.length)); + this.feedbackDescriptionInput.value ? this.sendButton.removeAttribute('disabled') : this.sendButton.attr('disabled', ''); + } + protected setSentiment(smile: boolean): void { if (smile) { this.smileyInput.addClass('checked'); @@ -206,6 +213,8 @@ export class FeedbackDropdown extends Dropdown { this.smileyInput.attr('aria-checked', 'false'); } this.sentiment = smile ? 1 : 0; + this.maxFeedbackCharacters = this.feedbackService.getCharacterLimit(this.sentiment); + this.updateCharCountText(); } protected invoke(element: Builder, callback: () => void): Builder { @@ -291,6 +300,7 @@ export class FeedbackDropdown extends Dropdown { this.feedbackDescriptionInput.value = ''; } this.sentiment = 1; + this.maxFeedbackCharacters = this.feedbackService.getCharacterLimit(this.sentiment); this.aliasEnabled = false; } } diff --git a/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts b/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts index 28cea6fc5f3..910fc4bab99 100644 --- a/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts +++ b/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts @@ -15,12 +15,33 @@ import {shell} from 'electron'; class TwitterFeedbackService implements IFeedbackService { private static TWITTER_URL: string = 'https://twitter.com/intent/tweet'; + private static VIA_NAME: string = 'code'; + private static HASHTAGS: string[] = ['HappyCoding']; + + private combineHashTagsAsString() : string { + return TwitterFeedbackService.HASHTAGS.join(','); + } public submitFeedback(feedback: IFeedback): void { - var queryString = `?${feedback.sentiment === 1 ? 'hashtags=HappyCoding&' : null}ref_src=twsrc%5Etfw&related=twitterapi%2Ctwitter&text=${feedback.feedback}&tw_p=tweetbutton&via=code`; + var queryString = `?${feedback.sentiment === 1 ? `hashtags=${this.combineHashTagsAsString()}&` : null}ref_src=twsrc%5Etfw&related=twitterapi%2Ctwitter&text=${feedback.feedback}&tw_p=tweetbutton&via=${TwitterFeedbackService.VIA_NAME}`; var url = TwitterFeedbackService.TWITTER_URL + queryString; shell.openExternal(url); } + + public getCharacterLimit(sentiment: number): number { + let length : number = 0; + if (sentiment === 1) + { + TwitterFeedbackService.HASHTAGS.forEach(element => { + length += element.length + 2; + }); + } + + if (TwitterFeedbackService.VIA_NAME) { + length += ` via @${TwitterFeedbackService.VIA_NAME}`.length; + } + return 140 - length; + } } export class FeedbackStatusbarItem implements IStatusbarItem { From 4d1a9fe47b4935006cdfefbaef97b3590d79d18b Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Tue, 5 Apr 2016 10:45:38 +0200 Subject: [PATCH 002/117] Theming tests --- .../test/electron-browser/fixtures/foo.js | 14 ++ .../themes.test.contribution.ts | 160 ++++++++++++++++++ src/vs/workbench/workbench.main.js | 5 +- 3 files changed, 178 insertions(+), 1 deletion(-) create mode 100644 src/vs/workbench/parts/themes/test/electron-browser/fixtures/foo.js create mode 100644 src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts diff --git a/src/vs/workbench/parts/themes/test/electron-browser/fixtures/foo.js b/src/vs/workbench/parts/themes/test/electron-browser/fixtures/foo.js new file mode 100644 index 00000000000..469a6a71cb5 --- /dev/null +++ b/src/vs/workbench/parts/themes/test/electron-browser/fixtures/foo.js @@ -0,0 +1,14 @@ +const webdriver = require('selenium-webdriver'); + +function mergeObjects(target) { + var sources = []; + for (var _i = 1; _i < arguments.length; _i++) { + sources[_i - 1] = arguments[_i]; + } + sources.forEach(function (source) { + for (var key in source) { + target[key] = source[key]; + } + }); + return target; +} \ No newline at end of file diff --git a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts new file mode 100644 index 00000000000..5e399135199 --- /dev/null +++ b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts @@ -0,0 +1,160 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +'use strict'; + +import * as nls from 'vs/nls'; +import {IDisposable, dispose} from 'vs/base/common/lifecycle'; +import {TPromise} from 'vs/base/common/winjs.base'; +import {Range} from 'vs/editor/common/core/range'; +import {SyncActionDescriptor} from 'vs/platform/actions/common/actions'; +import {Action} from 'vs/base/common/actions'; +import WorkbenchContributions = require('vs/workbench/common/contributions'); +import {IWorkspace} from 'vs/platform/workspace/common/workspace'; +import paths = require('vs/base/common/paths'); +import URI from 'vs/base/common/uri'; + +import Platform = require('vs/platform/platform'); +import WorkbenchActionRegistry = require('vs/workbench/common/actionRegistry'); +import {IFileStat} from 'vs/platform/files/common/files'; +import {TextModelWithTokens} from 'vs/editor/common/model/textModelWithTokens'; +import {TextModel} from 'vs/editor/common/model/textModel'; +import {IModeService} from 'vs/editor/common/services/modeService'; +import pfs = require('vs/base/node/pfs'); + + +interface Data { + c: string; // content + t: string; // token + r: string; // rule +} + +const ID = 'workbench.action.snapshotAction'; +const LABEL = nls.localize('togglePosition', "Take Theme Snapshot"); + +class SnapshotAction extends Action { + + private currentSrcFolder: string; + + constructor(id: string, label: string, + @IModeService private modeService: IModeService + ) { + super(id, label); + let outFolder = require.toUrl(''); + this.currentSrcFolder = paths.normalize(paths.join(outFolder, "../src/vs/workbench/parts/themes/test/electron-browser")); + } + + public run(): TPromise { + let fixturesPath = URI.parse(paths.join(this.currentSrcFolder, 'fixtures')).fsPath; + return pfs.readdir(fixturesPath).then(fileNames => { + return TPromise.join(fileNames.map(fileName => { + return pfs.readFile(paths.join(fixturesPath, fileName)).then(content => { + return this.snap(fileName, content.toString()).then(result => { + return this.verify(fileName, result); + }); + }); + })); + }, err => { + console.log(err.toString()); + }); + } + + public getId() : string { + return "TokenizationSnapshotController"; + } + + private getEditorNode() : Element { + let editorNodes = document.getElementsByClassName('monaco-editor'); + if (editorNodes.length > 0) { + return editorNodes.item(0); + } + return null; + } + + private getStyle(scope: string) : string { + + let element = document.createElement('span'); + element.className = scope; + element.hidden = true; + + let cssStyles = window.getComputedStyle(element); + if (cssStyles) { + return cssStyles.color; + } + return ''; + } + + private getMatchedCSSRule(scope: string) : string { + let element = document.createElement('span'); + element.className = 'token ' + scope; + element.hidden = true; + + let editorNode = this.getEditorNode(); + editorNode.appendChild(element); + + let rulesList = window.getMatchedCSSRules(element); + + editorNode.removeChild(element); + + if (rulesList) { + for (let i = rulesList.length - 1; i >= 0 ; i--) { + let selectorText = rulesList.item(i)['selectorText']; + if (selectorText && selectorText.indexOf('.monaco-editor.vs') === 0) { + return selectorText.substr(14); + } + } + } + + return ''; + } + + public snap(fileName: string, content: string) : TPromise { + return this.modeService.getOrCreateModeByFilenameOrFirstLine(fileName).then(mode => { + let result : Data[] = []; + let model = new TextModelWithTokens([], TextModel.toRawText(content, TextModel.DEFAULT_CREATION_OPTIONS), false, mode); + model.tokenIterator({lineNumber: 1, column: 1}, iterator => { + while (iterator.hasNext()) { + let tokenInfo = iterator.next(); + let lineNumber = tokenInfo.lineNumber; + let content = model.getValueInRange({ startLineNumber: lineNumber, endLineNumber: lineNumber, startColumn: tokenInfo.startColumn, endColumn: tokenInfo.endColumn}); + result.push({ + c: content, + t: tokenInfo.token.type, + r: this.getMatchedCSSRule(tokenInfo.token.type) + }); + } + }); + return result; + }); + } + + public verify(fileName: string, data: Data[]) : TPromise { + let dataString = JSON.stringify(data, null, '\t'); + let resultFileName = fileName.replace('.', '_') + '.json'; + let resultPath = URI.parse(paths.join(this.currentSrcFolder, 'results', resultFileName)).fsPath; + + return pfs.fileExists(resultPath).then(success => { + if (success) { + return pfs.readFile(resultPath).then(content => { + let previousDataString = content.toString(); + if (previousDataString !== dataString) { + let errorResultFileName = fileName.replace('.', '_') + '.error.json'; + let errorResultPath = URI.parse(paths.join(this.currentSrcFolder, 'results', errorResultFileName)).fsPath; + console.log(`Different result for ${fileName}`); + return pfs.writeFile(errorResultPath, dataString); + } + return true; + }); + } else { + return pfs.writeFile(resultPath, dataString); + } + }); + } +} + +var workbenchActionsRegistry = Platform.Registry.as(WorkbenchActionRegistry.Extensions.WorkbenchActions); + +workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(SnapshotAction, ID, LABEL), nls.localize('view', "View")); + diff --git a/src/vs/workbench/workbench.main.js b/src/vs/workbench/workbench.main.js index ccf443c998e..ffa5618f20c 100644 --- a/src/vs/workbench/workbench.main.js +++ b/src/vs/workbench/workbench.main.js @@ -87,7 +87,10 @@ define([ 'vs/workbench/electron-browser/darwin/cli.contribution', 'vs/workbench/electron-browser/main.contribution', - 'vs/workbench/electron-browser/main' + 'vs/workbench/electron-browser/main', + + + 'vs/workbench/parts/themes/test/electron-browser/themes.test.contribution' ], function() { 'use strict'; From 24dfa08f6f1d8a1159e4fc3fab45db9ab8a41b44 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Wed, 6 Apr 2016 16:39:00 +0200 Subject: [PATCH 003/117] Theme tests as extension test --- .../java/test/colorize-fixtures/basic.java | 38 + .../test/colorize-results/basic_java.json | 1883 +++++++++++++++++ extensions/json/.vscode/launch.json | 13 +- .../json/test/colorize-fixtures/test.json | 14 + .../json/test/colorize-results/test_json.json | 1157 ++++++++++ extensions/vscode-colorize-tests/.gitignore | 2 + .../vscode-colorize-tests/.vscode/launch.json | 17 + .../vscode-colorize-tests/.vscode/tasks.json | 30 + extensions/vscode-colorize-tests/package.json | 19 + .../src/colorizer.test.ts | 56 + extensions/vscode-colorize-tests/src/index.ts | 28 + .../src/typings/ref.d.ts | 10 + .../vscode-colorize-tests/tsconfig.json | 12 + .../vscode-colorize-tests/typings/mocha.d.ts | 13 + package.json | 2 +- scripts/test-integration.sh | 3 +- .../themes.test.contribution.ts | 183 +- .../themes/electron-browser/themeService.ts | 6 +- 18 files changed, 3399 insertions(+), 87 deletions(-) create mode 100644 extensions/java/test/colorize-fixtures/basic.java create mode 100644 extensions/java/test/colorize-results/basic_java.json create mode 100644 extensions/json/test/colorize-fixtures/test.json create mode 100644 extensions/json/test/colorize-results/test_json.json create mode 100644 extensions/vscode-colorize-tests/.gitignore create mode 100644 extensions/vscode-colorize-tests/.vscode/launch.json create mode 100644 extensions/vscode-colorize-tests/.vscode/tasks.json create mode 100644 extensions/vscode-colorize-tests/package.json create mode 100644 extensions/vscode-colorize-tests/src/colorizer.test.ts create mode 100644 extensions/vscode-colorize-tests/src/index.ts create mode 100644 extensions/vscode-colorize-tests/src/typings/ref.d.ts create mode 100644 extensions/vscode-colorize-tests/tsconfig.json create mode 100644 extensions/vscode-colorize-tests/typings/mocha.d.ts diff --git a/extensions/java/test/colorize-fixtures/basic.java b/extensions/java/test/colorize-fixtures/basic.java new file mode 100644 index 00000000000..17a51df1cc0 --- /dev/null +++ b/extensions/java/test/colorize-fixtures/basic.java @@ -0,0 +1,38 @@ +import org.junit.Test; + +/* + * Multi line comment + */ +public class TestClass { + + private String aString; + + /** + * @param args + */ + public void doSomething(int a) { + double b = 0.0; + double c = 10e3; + long l = 134l; + } + + /* + * multiline comment + */ + @SuppressWarnings(value = "aString") + private long privateMethod(long b){ + for (int i = 0; i < 9; i++) { + System.out.println("Hello" + i); + } + return 10; + } + + //single line comment + @Test + public void someTests() { + int hex = 0x5; + Vector v = new Vector(); + } + + +} diff --git a/extensions/java/test/colorize-results/basic_java.json b/extensions/java/test/colorize-results/basic_java.json new file mode 100644 index 00000000000..805b2dc5dae --- /dev/null +++ b/extensions/java/test/colorize-results/basic_java.json @@ -0,0 +1,1883 @@ +[ + { + "c": "import", + "t": "meta.import.java.keyword.other", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword" + } + }, + { + "c": " ", + "t": "meta.import.java", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "org", + "t": "meta.import.java.storage.modifier", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": ".", + "t": "meta.import.java.storage.modifier.punctuation.separator", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": "junit", + "t": "meta.import.java.storage.modifier", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": ".", + "t": "meta.import.java.storage.modifier.punctuation.separator", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": "Test", + "t": "meta.import.java.storage.modifier", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": ";", + "t": "meta.import.java.punctuation.terminator", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "/*", + "t": "java.punctuation.comment.block.definition", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": " * Multi line comment", + "t": "java.comment.block", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": " ", + "t": "java.comment.block", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "*/", + "t": "java.punctuation.comment.block.definition", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "public", + "t": "meta.java.storage.modifier.class", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.java.class", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "class", + "t": "meta.java.storage.modifier.class.identifier", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.java.class.identifier", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "TestClass", + "t": "meta.java.class.identifier.entity.name.type", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type" + } + }, + { + "c": " ", + "t": "meta.java.class", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "{", + "t": "meta.java.punctuation.class.body.section.begin", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "private", + "t": "meta.java.storage.modifier.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "String", + "t": "meta.java.storage.class.type.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " aString", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "/*", + "t": "meta.java.punctuation.comment.block.definition.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "*", + "t": "meta.java.comment.block.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t * @param args", + "t": "meta.java.comment.block.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t ", + "t": "meta.java.comment.block.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "*/", + "t": "meta.java.punctuation.comment.block.definition.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "public", + "t": "meta.java.storage.modifier.class.body.method", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "void", + "t": "meta.java.storage.class.type.body.method.return-type.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method.return-type", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type" + } + }, + { + "c": "doSomething", + "t": "meta.java.class.identifier.entity.name.body.method.function", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method" + } + }, + { + "c": "(", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "int", + "t": "meta.java.storage.class.identifier.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " ", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "a", + "t": "meta.java.class.identifier.body.method.variable.parameter", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter" + } + }, + { + "c": ")", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "{", + "t": "meta.java.punctuation.class.body.section.begin.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "double", + "t": "meta.java.storage.class.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " b ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.method.operator.assignment", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "0.0", + "t": "meta.java.class.body.method.constant.numeric.float", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "double", + "t": "meta.java.storage.class.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " c ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.method.operator.assignment", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "10e3", + "t": "meta.java.class.body.method.constant.numeric.float", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "long", + "t": "meta.java.storage.class.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " l ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.method.operator.assignment", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "134l", + "t": "meta.java.class.body.method.constant.numeric.integer", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "}", + "t": "meta.java.punctuation.class.body.section.method.end", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "/*", + "t": "meta.java.punctuation.comment.block.definition.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t * multiline comment", + "t": "meta.java.comment.block.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t ", + "t": "meta.java.comment.block.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "*/", + "t": "meta.java.punctuation.comment.block.definition.class.body", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "@SuppressWarnings", + "t": "meta.java.storage.class.type.body.declaration.annotation", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": "(", + "t": "meta.java.punctuation.definition.class.body.begin.declaration.annotation.annotation-arguments", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "value", + "t": "meta.java.other.class.body.constant.declaration.annotation.key", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": " ", + "t": "meta.java.class.body.declaration.annotation", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.operator.assignment.declaration.annotation", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.declaration.annotation", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\"", + "t": "meta.java.punctuation.definition.class.body.begin.declaration.annotation.string.quoted.double", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + } + }, + { + "c": "aString", + "t": "meta.java.class.body.declaration.annotation.string.quoted.double", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.java.punctuation.definition.class.body.end.declaration.annotation.string.quoted.double", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + } + }, + { + "c": ")", + "t": "meta.java.punctuation.definition.class.body.end.declaration.annotation.annotation-arguments", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "private", + "t": "meta.java.storage.modifier.class.body.method", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "long", + "t": "meta.java.storage.class.type.body.method.return-type.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method.return-type", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type" + } + }, + { + "c": "privateMethod", + "t": "meta.java.class.identifier.entity.name.body.method.function", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method" + } + }, + { + "c": "(", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "long", + "t": "meta.java.storage.class.identifier.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " ", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "b", + "t": "meta.java.class.identifier.body.method.variable.parameter", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter" + } + }, + { + "c": ")", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "{", + "t": "meta.java.punctuation.class.body.section.begin.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "for", + "t": "meta.java.keyword.class.body.method.control", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control" + } + }, + { + "c": " (", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "int", + "t": "meta.java.storage.class.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " i ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.method.operator.assignment", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "0", + "t": "meta.java.class.body.method.constant.numeric.integer", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": " i ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "<", + "t": "meta.java.keyword.class.body.method.operator.comparison", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "9", + "t": "meta.java.class.body.method.constant.numeric.integer", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": " i", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "++", + "t": "meta.java.keyword.class.body.method.operator.increment-decrement", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": ") ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "{", + "t": "meta.java.punctuation.block.class.body.section.begin.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "System", + "t": "meta.java.storage.class.type.body.method", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": ".", + "t": "meta.java.keyword.class.body.method.operator.dereference", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": "out", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": ".", + "t": "meta.java.keyword.class.body.method.operator.dereference", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": "println", + "t": "meta.java.class.body.method.method-call", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "(", + "t": "meta.java.punctuation.definition.class.body.begin.method.method-call.method-parameters", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\"", + "t": "meta.java.punctuation.definition.class.body.begin.method.string.quoted.double.method-call", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + } + }, + { + "c": "Hello", + "t": "meta.java.class.body.method.string.quoted.double.method-call", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.java.punctuation.definition.class.body.method.end.string.quoted.double.method-call", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method.method-call", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "+", + "t": "meta.java.keyword.class.body.method.operator.method-call.arithmetic", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " i", + "t": "meta.java.class.body.method.method-call", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": ")", + "t": "meta.java.punctuation.definition.class.body.method.end.method-call.method-parameters", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "}", + "t": "meta.java.punctuation.block.class.body.section.method.end", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "return", + "t": "meta.java.keyword.class.body.method.control", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "10", + "t": "meta.java.class.body.method.constant.numeric.integer", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "}", + "t": "meta.java.punctuation.class.body.section.method.end", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.punctuation.comment.class.body.whitespace.leading", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "//", + "t": "meta.java.punctuation.comment.definition.class.body.line.double-slash", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "single line comment", + "t": "meta.java.comment.class.body.line.double-slash", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "@Test", + "t": "meta.java.storage.class.type.body.annotation", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": "\t", + "t": "meta.java.class.body", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "public", + "t": "meta.java.storage.modifier.class.body.method", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "void", + "t": "meta.java.storage.class.type.body.method.return-type.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method.return-type", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type" + } + }, + { + "c": "someTests", + "t": "meta.java.class.identifier.entity.name.body.method.function", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method" + } + }, + { + "c": "()", + "t": "meta.java.class.identifier.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "{", + "t": "meta.java.punctuation.class.body.section.begin.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "int", + "t": "meta.java.storage.class.type.body.method.primitive.array", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " hex ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.method.operator.assignment", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "0x5", + "t": "meta.java.class.body.method.constant.numeric.hex", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "Vector", + "t": "meta.java.storage.class.type.body.method.generic", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": " v ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "=", + "t": "meta.java.keyword.class.body.method.operator.assignment", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "new", + "t": "meta.java.keyword.class.body.method.control.new", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "Vector", + "t": "meta.java.storage.class.type.body.method", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + } + }, + { + "c": "()", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": ";", + "t": "meta.java.punctuation.terminator.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "\t", + "t": "meta.java.class.body.method", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "}", + "t": "meta.java.punctuation.class.body.section.method.end", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + }, + { + "c": "}", + "t": "meta.java.punctuation.class.section.end", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token" + } + } +] \ No newline at end of file diff --git a/extensions/json/.vscode/launch.json b/extensions/json/.vscode/launch.json index 744746999b4..7a654d67e8d 100644 --- a/extensions/json/.vscode/launch.json +++ b/extensions/json/.vscode/launch.json @@ -13,6 +13,17 @@ "sourceMaps": true, "outDir": "${workspaceRoot}/client/out", "preLaunchTask": "npm" - } + }, + { + "name": "Launch Tests", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/client/out/test" ], + "stopOnEntry": false, + "sourceMaps": true, + "outDir": "${workspaceRoot}/client/out/test", + "preLaunchTask": "npm" + } ] } \ No newline at end of file diff --git a/extensions/json/test/colorize-fixtures/test.json b/extensions/json/test/colorize-fixtures/test.json new file mode 100644 index 00000000000..189b7269d48 --- /dev/null +++ b/extensions/json/test/colorize-fixtures/test.json @@ -0,0 +1,14 @@ +{ + // a comment + "options": { + "myBool": true, + "myInteger": 1, + "myString": "String\u0056", + "myNumber": 1.24, + "myNull": null, + "myArray": [ 1, "Hello", true, null, [], {}], + "myObject" : { + "foo": "bar" + } + } +} \ No newline at end of file diff --git a/extensions/json/test/colorize-results/test_json.json b/extensions/json/test/colorize-results/test_json.json new file mode 100644 index 00000000000..196805c556a --- /dev/null +++ b/extensions/json/test/colorize-results/test_json.json @@ -0,0 +1,1157 @@ +[ + { + "c": "{", + "t": "meta.structure.dictionary.json.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.structure.dictionary.json", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "//", + "t": "meta.structure.dictionary.json.punctuation.definition.comment.line.double-slash.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " a comment", + "t": "meta.structure.dictionary.json.comment.line.double-slash.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.structure.dictionary.json", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "options", + "t": "meta.structure.dictionary.json.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myBool", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "meta.structure.dictionary.json.value.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myInteger", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "meta.structure.dictionary.json.value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myString", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "String", + "t": "meta.structure.dictionary.json.value.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "\\u0056", + "t": "meta.structure.dictionary.json.value.constant.string.quoted.double.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myNumber", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1.24", + "t": "meta.structure.dictionary.json.value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myNull", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "null", + "t": "meta.structure.dictionary.json.value.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myArray", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "meta.structure.dictionary.json.value.constant.numeric.array", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.string.quoted.double.array", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "Hello", + "t": "meta.structure.dictionary.json.value.string.quoted.double.array", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value.string.quoted.double.array", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "meta.structure.dictionary.json.value.constant.language.array", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "null", + "t": "meta.structure.dictionary.json.value.constant.language.array", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}]", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "myObject", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "foo", + "t": "meta.structure.dictionary.json.support.type.property-name.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "bar", + "t": "meta.structure.dictionary.json.value.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "\"", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + } + }, + { + "c": "\t\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.structure.dictionary.json.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.structure.dictionary.json.punctuation.definition.end.value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.structure.dictionary.json.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/.gitignore b/extensions/vscode-colorize-tests/.gitignore new file mode 100644 index 00000000000..8e5962ee727 --- /dev/null +++ b/extensions/vscode-colorize-tests/.gitignore @@ -0,0 +1,2 @@ +out +node_modules \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/.vscode/launch.json b/extensions/vscode-colorize-tests/.vscode/launch.json new file mode 100644 index 00000000000..76d6fa69865 --- /dev/null +++ b/extensions/vscode-colorize-tests/.vscode/launch.json @@ -0,0 +1,17 @@ +// A launch configuration that compiles the extension and then opens it inside a new window +{ + "version": "0.1.0", + "configurations": [ + { + "name": "Launch Tests", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": ["${workspaceRoot}/../../", "${workspaceRoot}/test", "--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out" ], + "stopOnEntry": false, + "sourceMaps": true, + "outDir": "${workspaceRoot}/out", + "preLaunchTask": "npm" + } + ] +} \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/.vscode/tasks.json b/extensions/vscode-colorize-tests/.vscode/tasks.json new file mode 100644 index 00000000000..d31b15910ee --- /dev/null +++ b/extensions/vscode-colorize-tests/.vscode/tasks.json @@ -0,0 +1,30 @@ +// Available variables which can be used inside of strings. +// ${workspaceRoot}: the root folder of the team +// ${file}: the current opened file +// ${fileBasename}: the current opened file's basename +// ${fileDirname}: the current opened file's dirname +// ${fileExtname}: the current opened file's extension +// ${cwd}: the current working directory of the spawned process + +// A task runner that calls a custom npm script that compiles the extension. +{ + "version": "0.1.0", + + // we want to run npm + "command": "npm", + + // the command is a shell script + "isShellCommand": true, + + // show the output window only if unrecognized errors occur. + "showOutput": "silent", + + // we run the custom script "compile" as defined in package.json + "args": ["run", "compile", "--loglevel", "silent"], + + // The tsc compiler is started in watching mode + "isWatching": true, + + // use the standard tsc in watch mode problem matcher to find compile problems in the output. + "problemMatcher": "$tsc-watch" +} \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/package.json b/extensions/vscode-colorize-tests/package.json new file mode 100644 index 00000000000..0cd9fa5488e --- /dev/null +++ b/extensions/vscode-colorize-tests/package.json @@ -0,0 +1,19 @@ +{ + "name": "vscode-colorize-tests", + "description": "Colorize tests for VS Code", + "version": "0.0.1", + "publisher": "vscode", + "private": true, + "engines": { + "vscode": "*" + }, + "scripts": { + "compile": "node ./node_modules/vscode/bin/compile -watch -p ./", + "vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-api-tests ./tsconfig.json", + "postinstall": "node ./node_modules/vscode/bin/install" + }, + "devDependencies": { + "typescript": "^1.6.2", + "vscode": "^0.11.1" + } +} \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/src/colorizer.test.ts b/extensions/vscode-colorize-tests/src/colorizer.test.ts new file mode 100644 index 00000000000..801642a33a3 --- /dev/null +++ b/extensions/vscode-colorize-tests/src/colorizer.test.ts @@ -0,0 +1,56 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +'use strict'; + +import * as assert from 'assert'; +import {commands, Uri} from 'vscode'; +import {join, basename, normalize, dirname} from 'path'; +import * as fs from 'fs'; + +function assertUnchangedTokens(testFixurePath:string, done) { + let fileName = basename(testFixurePath); + + return commands.executeCommand('_workbench.captureSyntaxTokens', Uri.file(testFixurePath)).then(data => { + try { + let resultsFolderPath = join(dirname(dirname(testFixurePath)), 'colorize-results'); + let resultPath = join(resultsFolderPath, fileName.replace('.', '_') + '.json'); + if (fs.existsSync(resultPath)) { + let previosData = JSON.parse(fs.readFileSync(resultPath).toString()); + try { + assert.deepEqual(data, previosData); + } catch (e) { + let errorResultPath = join(resultsFolderPath, fileName.replace('.', '_') + '.error.json'); + fs.writeFileSync(errorResultPath, JSON.stringify(data, null, '\t')); + throw e; + } + } else { + fs.writeFileSync(resultPath, JSON.stringify(data, null, '\t')); + } + done(); + } catch (e) { + done(e); + } + }, done); +} + +suite("colorization", () => { + let extensionsFolder = normalize(join(__dirname, '../../')); + console.log(extensionsFolder); + let extensions = fs.readdirSync(extensionsFolder); + extensions.forEach(extension => { + let extensionColorizeFixurePath = join(extensionsFolder, extension, 'test', 'colorize-fixtures'); + if (fs.existsSync(extensionColorizeFixurePath)) { + console.log(extensionColorizeFixurePath); + let fixturesFiles = fs.readdirSync(extensionColorizeFixurePath); + fixturesFiles.forEach(fixturesFile => { + // define a test for each fixture + test(extension + '-' + fixturesFile, function(done) { + assertUnchangedTokens(join(extensionColorizeFixurePath, fixturesFile), done); + }); + }); + } + }); +}); diff --git a/extensions/vscode-colorize-tests/src/index.ts b/extensions/vscode-colorize-tests/src/index.ts new file mode 100644 index 00000000000..9147c171546 --- /dev/null +++ b/extensions/vscode-colorize-tests/src/index.ts @@ -0,0 +1,28 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +// +// PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING +// +// This file is providing the test runner to use when running extension tests. +// By default the test runner in use is Mocha based. +// +// You can provide your own test runner if you want to override it by exporting +// a function run(testRoot: string, clb: (error:Error) => void) that the extension +// host can call to run the tests. The test runner is expected to use console.log +// to report the results back to the caller. When the tests are finished, return +// a possible error to the callback or null if none. + +const testRunner = require('vscode/lib/testrunner'); + +// You can directly control Mocha options by uncommenting the following lines +// See https://github.com/mochajs/mocha/wiki/Using-mocha-programmatically#set-options for more info +testRunner.configure({ + ui: 'tdd', // the TDD UI is being used in extension.test.ts (suite, test, etc.) + useColors: process.platform !== 'win32', // colored output from test results (only windows cannot handle) + timeout: 10000 +}); + +export= testRunner; \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/src/typings/ref.d.ts b/extensions/vscode-colorize-tests/src/typings/ref.d.ts new file mode 100644 index 00000000000..95498a3fb9c --- /dev/null +++ b/extensions/vscode-colorize-tests/src/typings/ref.d.ts @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +/// +/// +/// +/// +/// \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/tsconfig.json b/extensions/vscode-colorize-tests/tsconfig.json new file mode 100644 index 00000000000..44066990ddc --- /dev/null +++ b/extensions/vscode-colorize-tests/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "ES5", + "outDir": "out", + "noLib": true, + "sourceMap": true + }, + "exclude": [ + "node_modules" + ] +} \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/typings/mocha.d.ts b/extensions/vscode-colorize-tests/typings/mocha.d.ts new file mode 100644 index 00000000000..7b23f5d1816 --- /dev/null +++ b/extensions/vscode-colorize-tests/typings/mocha.d.ts @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +declare function run(): void; + +declare function suite(name: string, fn: (err?)=>void); +declare function test(name: string, fn: (done?: (err?)=>void)=>void); +declare function suiteSetup(fn: (done?: (err?)=>void)=>void); +declare function suiteTeardown(fn: (done?: (err?)=>void)=>void); +declare function setup(fn: (done?: (err?)=>void)=>void); +declare function teardown(fn: (done?: (err?)=>void)=>void); diff --git a/package.json b/package.json index 8ffdd76a369..8a963ddf678 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "scripts": { "test": "mocha", "preinstall": "node build/npm/preinstall.js", - "postinstall": "npm --prefix extensions/vscode-api-tests/ install extensions/vscode-api-tests/ && npm --prefix extensions/json/ install extensions/json/ && npm --prefix extensions/typescript/ install extensions/typescript/ && npm --prefix extensions/php/ install extensions/php/", + "postinstall": "npm --prefix extensions/vscode-api-tests/ install extensions/vscode-api-tests/ && npm --prefix extensions/vscode-colorize-tests/ install extensions/vscode-colorize-tests/ && npm --prefix extensions/json/ install extensions/json/ && npm --prefix extensions/typescript/ install extensions/typescript/ && npm --prefix extensions/php/ install extensions/php/", "watch": "gulp watch" }, "dependencies": { diff --git a/scripts/test-integration.sh b/scripts/test-integration.sh index ca37b19dd9e..fc7b94b7e0f 100755 --- a/scripts/test-integration.sh +++ b/scripts/test-integration.sh @@ -9,4 +9,5 @@ else fi # Integration Tests -./scripts/code.sh $ROOT/extensions/vscode-api-tests/testWorkspace --extensionDevelopmentPath=$ROOT/extensions/vscode-api-tests --extensionTestsPath=$ROOT/extensions/vscode-api-tests/out \ No newline at end of file +./scripts/code.sh $ROOT/extensions/vscode-api-tests/testWorkspace --extensionDevelopmentPath=$ROOT/extensions/vscode-api-tests --extensionTestsPath=$ROOT/extensions/vscode-api-tests/out +./scripts/code.sh $ROOT/extensions/vscode-colorize-tests/test --extensionDevelopmentPath=$ROOT/extensions/vscode-colorize-tests --extensionTestsPath=$ROOT/extensions/vscode-colorize-tests/out diff --git a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts index 5e399135199..892b0ded0b8 100644 --- a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts +++ b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts @@ -23,94 +23,106 @@ import {TextModelWithTokens} from 'vs/editor/common/model/textModelWithTokens'; import {TextModel} from 'vs/editor/common/model/textModel'; import {IModeService} from 'vs/editor/common/services/modeService'; import pfs = require('vs/base/node/pfs'); +import {KeybindingsRegistry} from 'vs/platform/keybinding/common/keybindingsRegistry'; +import {IInstantiationService, ServicesAccessor} from 'vs/platform/instantiation/common/instantiation'; +import {IThemeService} from 'vs/workbench/services/themes/common/themeService'; +import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService'; +import {KeyCode, KeyMod} from 'vs/base/common/keyCodes'; +import {asFileEditorInput} from 'vs/workbench/common/editor'; interface Data { c: string; // content t: string; // token - r: string; // rule + r: { [theme:string]:string} } -const ID = 'workbench.action.snapshotAction'; -const LABEL = nls.localize('togglePosition', "Take Theme Snapshot"); +class Snapper { -class SnapshotAction extends Action { - - private currentSrcFolder: string; - - constructor(id: string, label: string, - @IModeService private modeService: IModeService + constructor( + @IModeService private modeService: IModeService, + @IThemeService private themeService: IThemeService ) { - super(id, label); - let outFolder = require.toUrl(''); - this.currentSrcFolder = paths.normalize(paths.join(outFolder, "../src/vs/workbench/parts/themes/test/electron-browser")); } - public run(): TPromise { - let fixturesPath = URI.parse(paths.join(this.currentSrcFolder, 'fixtures')).fsPath; - return pfs.readdir(fixturesPath).then(fileNames => { - return TPromise.join(fileNames.map(fileName => { - return pfs.readFile(paths.join(fixturesPath, fileName)).then(content => { - return this.snap(fileName, content.toString()).then(result => { - return this.verify(fileName, result); - }); - }); - })); - }, err => { - console.log(err.toString()); - }); - } - - public getId() : string { - return "TokenizationSnapshotController"; - } - - private getEditorNode() : Element { - let editorNodes = document.getElementsByClassName('monaco-editor'); - if (editorNodes.length > 0) { - return editorNodes.item(0); - } - return null; - } - - private getStyle(scope: string) : string { + private getTestNode(themeId: string) : Element { + let editorNode = document.createElement('div'); + editorNode.className = 'monaco-editor ' + themeId; + document.body.appendChild(editorNode); let element = document.createElement('span'); - element.className = scope; - element.hidden = true; - let cssStyles = window.getComputedStyle(element); + editorNode.appendChild(element); + + return element; + } + + private getStyle(testNode: Element, scope: string) : string { + + testNode.className = 'token ' + scope; + + let cssStyles = window.getComputedStyle(testNode); if (cssStyles) { return cssStyles.color; } return ''; } - private getMatchedCSSRule(scope: string) : string { - let element = document.createElement('span'); - element.className = 'token ' + scope; - element.hidden = true; + private getMatchedCSSRule(testNode: Element, scope: string) : string { - let editorNode = this.getEditorNode(); - editorNode.appendChild(element); + testNode.className = 'token ' + scope.replace(/\./g, ' '); - let rulesList = window.getMatchedCSSRules(element); - - editorNode.removeChild(element); + let rulesList = window.getMatchedCSSRules(testNode); if (rulesList) { for (let i = rulesList.length - 1; i >= 0 ; i--) { let selectorText = rulesList.item(i)['selectorText']; - if (selectorText && selectorText.indexOf('.monaco-editor.vs') === 0) { + if (selectorText && selectorText.match(/\.monaco-editor\..+token/) ) { return selectorText.substr(14); } } + } else { + console.log('no match ' + scope); } return ''; } - public snap(fileName: string, content: string) : TPromise { + + public appendThemeInformation(data: Data[]) : TPromise { + let currentTheme = this.themeService.getTheme(); + + let getThemeName = (id: string) => { + let part = 'vscode-theme-defaults-themes-'; + let startIdx = id.indexOf(part); + if (startIdx !== -1) { + return id.substring(startIdx + part.length, id.length - 5); + } + return void 0; + } + + return this.themeService.getThemes().then(themeDatas => { + let defaultThemes = themeDatas.filter(themeData => !!getThemeName(themeData.id)); + return TPromise.join(defaultThemes.map(defaultTheme => { + let themeId = defaultTheme.id; + return this.themeService.setTheme(themeId, false).then(success => { + if (success) { + let testNode = this.getTestNode(themeId); + let themeName = getThemeName(themeId); + data.forEach(entry => { + entry.r[themeName] = this.getMatchedCSSRule(testNode, entry.t); + }); + } + }); + })); + }).then(_ => { + return this.themeService.setTheme(currentTheme, false).then(_ => { + return data; + }); + }); + } + + public captureSyntaxTokens(fileName: string, content: string) : TPromise { return this.modeService.getOrCreateModeByFilenameOrFirstLine(fileName).then(mode => { let result : Data[] = []; let model = new TextModelWithTokens([], TextModel.toRawText(content, TextModel.DEFAULT_CREATION_OPTIONS), false, mode); @@ -122,39 +134,48 @@ class SnapshotAction extends Action { result.push({ c: content, t: tokenInfo.token.type, - r: this.getMatchedCSSRule(tokenInfo.token.type) + r: {} }); } }); - return result; - }); - } - - public verify(fileName: string, data: Data[]) : TPromise { - let dataString = JSON.stringify(data, null, '\t'); - let resultFileName = fileName.replace('.', '_') + '.json'; - let resultPath = URI.parse(paths.join(this.currentSrcFolder, 'results', resultFileName)).fsPath; - - return pfs.fileExists(resultPath).then(success => { - if (success) { - return pfs.readFile(resultPath).then(content => { - let previousDataString = content.toString(); - if (previousDataString !== dataString) { - let errorResultFileName = fileName.replace('.', '_') + '.error.json'; - let errorResultPath = URI.parse(paths.join(this.currentSrcFolder, 'results', errorResultFileName)).fsPath; - console.log(`Different result for ${fileName}`); - return pfs.writeFile(errorResultPath, dataString); - } - return true; - }); - } else { - return pfs.writeFile(resultPath, dataString); - } + return this.appendThemeInformation(result); }); } } -var workbenchActionsRegistry = Platform.Registry.as(WorkbenchActionRegistry.Extensions.WorkbenchActions); +KeybindingsRegistry.registerCommandDesc({ + id: '_workbench.captureSyntaxTokens', + weight: KeybindingsRegistry.WEIGHT.workbenchContrib(0), + handler(accessor: ServicesAccessor, args: [URI]) { -workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(SnapshotAction, ID, LABEL), nls.localize('view', "View")); + let process = (resource: URI) => { + let filePath = resource.fsPath; + let fileName = paths.basename(filePath); + let snapper = accessor.get(IInstantiationService).createInstance(Snapper); + + return pfs.readFile(filePath).then(content => { + return snapper.captureSyntaxTokens(fileName, content.toString()); + }); + } + + + let [resource] = args; + if (!resource) { + let editorService = accessor.get(IWorkbenchEditorService); + let fileEditorInput = asFileEditorInput(editorService.getActiveEditorInput()); + if (fileEditorInput) { + process(fileEditorInput.getResource()).then(result => { + console.log(result); + }); + } else { + console.log('No file editor active'); + } + } else { + return process(resource); + } + + }, + context: undefined, + primary: KeyMod.Shift | KeyCode.F11 +}); diff --git a/src/vs/workbench/services/themes/electron-browser/themeService.ts b/src/vs/workbench/services/themes/electron-browser/themeService.ts index f3c65c8ba1a..08447319dd1 100644 --- a/src/vs/workbench/services/themes/electron-browser/themeService.ts +++ b/src/vs/workbench/services/themes/electron-browser/themeService.ts @@ -142,7 +142,7 @@ export class ThemeService implements IThemeService { if (broadcastToAllWindows) { this.windowService.broadcast({ channel: THEME_CHANNEL, payload: themeId }); } - return TPromise.as(false); + return TPromise.as(true); } themeId = validateThemeId(themeId); // migrate theme ids @@ -191,7 +191,7 @@ export class ThemeService implements IThemeService { if (theme) { return applyTheme(theme, onApply); } - return null; + return false; }); } @@ -253,7 +253,7 @@ function applyTheme(theme: IThemeData, onApply: (themeId:string) => void): TProm theme.styleSheetContent = styleSheetContent; _applyRules(styleSheetContent); onApply(theme.id); - return false; + return true; }, error => { return TPromise.wrapError(nls.localize('error.cannotloadtheme', "Unable to load {0}", theme.path)); }); From b6bdc71d725fca63b9a5fb2944b29e09cd525a8a Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Fri, 8 Apr 2016 23:00:27 +0200 Subject: [PATCH 004/117] colorize-test fixes for build --- build/gulpfile.vscode.js | 2 ++ extensions/vscode-colorize-tests/package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 118822a144a..acefb0ef60c 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -162,8 +162,10 @@ function packageTask(platform, arch, opts) { 'extensions/**', '!extensions/*/src/**', '!extensions/*/out/**/test/**', + '!extensions/*/test/**', '!extensions/typescript/bin/**', '!extensions/vscode-api-tests/**', + '!extensions/vscode-colorize-tests/**', '!extensions/json/server/.vscode/**', '!extensions/json/server/src/**', '!extensions/json/server/out/**/test/**', diff --git a/extensions/vscode-colorize-tests/package.json b/extensions/vscode-colorize-tests/package.json index 0cd9fa5488e..b9d488934b5 100644 --- a/extensions/vscode-colorize-tests/package.json +++ b/extensions/vscode-colorize-tests/package.json @@ -9,7 +9,7 @@ }, "scripts": { "compile": "node ./node_modules/vscode/bin/compile -watch -p ./", - "vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-api-tests ./tsconfig.json", + "vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-colorize-tests ./tsconfig.json", "postinstall": "node ./node_modules/vscode/bin/install" }, "devDependencies": { From 251829217a4b023830e508fba0274ad660908c22 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Fri, 8 Apr 2016 15:57:48 -0700 Subject: [PATCH 005/117] Use scoped /home/daimms variable to encapsulate rpmbuild Fixes #3871 --- build/gulpfile.vscode.js | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index acefb0ef60c..f6253d55dd8 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -317,15 +317,10 @@ function buildDebPackage(arch) { ], { cwd: '.build/linux/deb/' + debArch}); } -function getHomeDir() { - if (typeof os.homedir === 'function') { - return os.homedir(); - } - return process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME']; +function getRpmBuildPath(rpmArch) { + return '.build/linux/rpm/' + rpmArch + '/rpmbuild'; } -var rpmBuildPath = path.join(getHomeDir(), 'rpmbuild'); - function getRpmPackageArch(arch) { return { x64: 'x86_64', ia32: 'i386' }[arch]; } @@ -333,7 +328,6 @@ function getRpmPackageArch(arch) { function prepareRpmPackage(arch) { var binaryDir = '../VSCode-linux-' + arch; var rpmArch = getRpmPackageArch(arch); - var destination = rpmBuildPath; var packageRevision = getEpochTime(); return function () { @@ -363,17 +357,18 @@ function prepareRpmPackage(arch) { var all = es.merge(code, desktop, icon, spec, specIcon); - return all.pipe(symdest(destination)); + return all.pipe(symdest(getRpmBuildPath(rpmArch))); } } function buildRpmPackage(arch) { var rpmArch = getRpmPackageArch(arch); + var rpmBuildPath = getRpmBuildPath(rpmArch); var rpmOut = rpmBuildPath + '/RPMS/' + rpmArch; var destination = '.build/linux/rpm/' + rpmArch; return shell.task([ 'mkdir -p ' + destination, - 'fakeroot rpmbuild -bb ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch, + 'HOME="$(pwd)/' + destination + '" fakeroot rpmbuild -bb ' + rpmBuildPath + '/SPECS/' + product.applicationName + '.spec --target=' + rpmArch, 'cp "' + rpmOut + '/$(ls ' + rpmOut + ')" ' + destination + '/vscode-' + rpmArch + '.rpm', 'createrepo ' + destination ]); @@ -388,7 +383,6 @@ gulp.task('clean-vscode-linux-ia32-deb', util.rimraf('.build/linux/deb/i386')); gulp.task('clean-vscode-linux-x64-deb', util.rimraf('.build/linux/deb/amd64')); gulp.task('clean-vscode-linux-ia32-rpm', util.rimraf('.build/linux/rpm/i386')); gulp.task('clean-vscode-linux-x64-rpm', util.rimraf('.build/linux/rpm/x86_64')); -gulp.task('clean-rpmbuild', util.rimraf(rpmBuildPath)); gulp.task('vscode-win32', ['optimize-vscode', 'clean-vscode-win32'], packageTask('win32')); gulp.task('vscode-darwin', ['optimize-vscode', 'clean-vscode-darwin'], packageTask('darwin')); @@ -407,8 +401,8 @@ gulp.task('vscode-linux-x64-prepare-deb', ['clean-vscode-linux-x64-deb', 'vscode gulp.task('vscode-linux-ia32-build-deb', ['vscode-linux-ia32-prepare-deb'], buildDebPackage('ia32')); gulp.task('vscode-linux-x64-build-deb', ['vscode-linux-x64-prepare-deb'], buildDebPackage('x64')); -gulp.task('vscode-linux-ia32-prepare-rpm', ['clean-rpmbuild', 'clean-vscode-linux-ia32-rpm', 'vscode-linux-ia32-min'], prepareRpmPackage('ia32')); -gulp.task('vscode-linux-x64-prepare-rpm', ['clean-rpmbuild', 'clean-vscode-linux-x64-rpm', 'vscode-linux-x64-min'], prepareRpmPackage('x64')); +gulp.task('vscode-linux-ia32-prepare-rpm', ['clean-vscode-linux-ia32-rpm', 'vscode-linux-ia32-min'], prepareRpmPackage('ia32')); +gulp.task('vscode-linux-x64-prepare-rpm', ['clean-vscode-linux-x64-rpm', 'vscode-linux-x64-min'], prepareRpmPackage('x64')); gulp.task('vscode-linux-ia32-build-rpm', ['vscode-linux-ia32-prepare-rpm'], buildRpmPackage('ia32')); gulp.task('vscode-linux-x64-build-rpm', ['vscode-linux-x64-prepare-rpm'], buildRpmPackage('x64')); From 39e2584228bee78d7f40bb28f4fc8a6acf24e499 Mon Sep 17 00:00:00 2001 From: Dan Mace Date: Sat, 9 Apr 2016 00:36:13 -0400 Subject: [PATCH 006/117] Introduce a Go problem matcher Add a $go problem matcher which can interpret errors produced by the go build, install, and lint commands. --- .../platform/markers/common/problemMatcher.ts | 18 +++++++++++++++++- .../electron-browser/task.contribution.ts | 8 ++++---- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/vs/platform/markers/common/problemMatcher.ts b/src/vs/platform/markers/common/problemMatcher.ts index 6dabb657c21..c3373dc6f56 100644 --- a/src/vs/platform/markers/common/problemMatcher.ts +++ b/src/vs/platform/markers/common/problemMatcher.ts @@ -494,6 +494,13 @@ _defaultPatterns['eslint-stylish'] = [ loop: true } ]; +_defaultPatterns['go'] = { + regexp: /^([^:]*: )?((.:)?[^:]*):(\d+)(:(\d+))?: (.*)$/, + file: 2, + line: 4, + column: 6, + message: 7 +}; export function defaultPattern(name: 'msCompile'): ProblemPattern; export function defaultPattern(name: 'tsc'): ProblemPattern; @@ -503,6 +510,7 @@ export function defaultPattern(name: 'vb'): ProblemPattern; export function defaultPattern(name: 'lessCompile'): ProblemPattern; export function defaultPattern(name: 'jshint'): ProblemPattern; export function defaultPattern(name: 'gulp-tsc'): ProblemPattern; +export function defaultPattern(name: 'go'): ProblemPattern; export function defaultPattern(name: 'jshint-stylish'): ProblemPattern[]; export function defaultPattern(name: string): ProblemPattern | ProblemPattern[]; export function defaultPattern(name: string): ProblemPattern | ProblemPattern[] { @@ -1127,4 +1135,12 @@ registry.add('eslint-stylish', { applyTo: ApplyToKind.allDocuments, fileLocation: FileLocationKind.Absolute, pattern: defaultPattern('eslint-stylish') -}); \ No newline at end of file +}); + +registry.add('go', { + owner: 'typescript', + applyTo: ApplyToKind.allDocuments, + fileLocation: FileLocationKind.Relative, + filePrefix: '${cwd}', + pattern: defaultPattern('go') +}); diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index b3fb59a59fc..9fc3bab33df 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -867,7 +867,7 @@ if (Env.enableTasks) { 'anyOf': [ { 'type': 'string', - 'enum': ['$tsc', '$tsc-watch' ,'$msCompile', '$lessCompile', '$gulp-tsc', '$cpp', '$csc', '$vb', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish'] + 'enum': ['$tsc', '$tsc-watch' ,'$msCompile', '$lessCompile', '$gulp-tsc', '$cpp', '$csc', '$vb', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish', '$go'] }, { '$ref': '#/definitions/pattern' @@ -939,7 +939,7 @@ if (Env.enableTasks) { 'oneOf': [ { 'type': 'string', - 'enum': ['$tsc', '$tsc-watch', '$msCompile', '$lessCompile', '$gulp-tsc', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish'] + 'enum': ['$tsc', '$tsc-watch', '$msCompile', '$lessCompile', '$gulp-tsc', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish', '$go'] }, { '$ref': '#/definitions/problemMatcher' @@ -953,7 +953,7 @@ if (Env.enableTasks) { }, { 'type': 'string', - 'enum': ['$tsc', '$tsc-watch', '$msCompile', '$lessCompile', '$gulp-tsc', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish'] + 'enum': ['$tsc', '$tsc-watch', '$msCompile', '$lessCompile', '$gulp-tsc', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish', '$go'] } ] } @@ -980,7 +980,7 @@ if (Env.enableTasks) { 'properties': { 'base': { 'type': 'string', - 'enum': ['$tsc', '$tsc-watch', '$msCompile', '$lessCompile', '$gulp-tsc', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish'], + 'enum': ['$tsc', '$tsc-watch', '$msCompile', '$lessCompile', '$gulp-tsc', '$jshint', '$jshint-stylish', '$eslint-compact', '$eslint-stylish', '$go'], 'description': nls.localize('JsonSchema.problemMatcher.base', 'The name of a base problem matcher to use.') }, 'owner': { From a7c500ded7061bbb741b3cc7637c9f5be910bf16 Mon Sep 17 00:00:00 2001 From: Dan Mace Date: Sun, 10 Apr 2016 15:11:34 -0400 Subject: [PATCH 007/117] Change matcher owner to go --- src/vs/platform/markers/common/problemMatcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/platform/markers/common/problemMatcher.ts b/src/vs/platform/markers/common/problemMatcher.ts index c3373dc6f56..5205d39a7cd 100644 --- a/src/vs/platform/markers/common/problemMatcher.ts +++ b/src/vs/platform/markers/common/problemMatcher.ts @@ -1138,7 +1138,7 @@ registry.add('eslint-stylish', { }); registry.add('go', { - owner: 'typescript', + owner: 'go', applyTo: ApplyToKind.allDocuments, fileLocation: FileLocationKind.Relative, filePrefix: '${cwd}', From 0ae67eeff671c24493d097cbea3cdd7b341d2d30 Mon Sep 17 00:00:00 2001 From: PJ Meyer Date: Sun, 10 Apr 2016 21:00:42 -0700 Subject: [PATCH 008/117] Add ARG and match DTD --- extensions/docker/syntaxes/Dockerfile.tmLanguage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/docker/syntaxes/Dockerfile.tmLanguage b/extensions/docker/syntaxes/Dockerfile.tmLanguage index ddefcfaf055..ea224eb838d 100644 --- a/extensions/docker/syntaxes/Dockerfile.tmLanguage +++ b/extensions/docker/syntaxes/Dockerfile.tmLanguage @@ -1,5 +1,5 @@ - + fileTypes @@ -25,7 +25,7 @@ match - ^\s*(?:(ONBUILD)\s+)?(FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|VOLUME|USER|WORKDIR|COPY|LABEL|STOPSIGNAL)\s + ^\s*(?:(ONBUILD)\s+)?(FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|VOLUME|USER|WORKDIR|COPY|LABEL|STOPSIGNAL|ARG)\s captures From 314e122b16c5c1ca0288c8006e9c9c3039a51cd7 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 11 Apr 2016 07:27:58 +0200 Subject: [PATCH 009/117] Windows 7: New files not automatically displayed in explorer (.NET 4.5 required) --- src/vs/workbench/electron-browser/shell.ts | 3 +- .../files/electron-browser/fileService.ts | 30 +++++++++++++++++-- .../services/files/node/fileService.ts | 5 +--- .../files/node/watcher/unix/watcherService.ts | 8 ++++- .../watcher/win32/csharpWatcherService.ts | 25 +++++++--------- .../node/watcher/win32/watcherService.ts | 16 +++++++--- .../files/test/node/fileService.test.ts | 10 +++---- 7 files changed, 64 insertions(+), 33 deletions(-) diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index e93eb9b2169..86d110f62a0 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -259,7 +259,8 @@ export class WorkbenchShell { let fileService = new FileService( this.configurationService, this.eventService, - this.contextService + this.contextService, + this.messageService ); this.contextViewService = new ContextViewService(this.container, this.telemetryService, this.messageService); diff --git a/src/vs/workbench/services/files/electron-browser/fileService.ts b/src/vs/workbench/services/files/electron-browser/fileService.ts index 32e7e7aaf80..1e671252d1f 100644 --- a/src/vs/workbench/services/files/electron-browser/fileService.ts +++ b/src/vs/workbench/services/files/electron-browser/fileService.ts @@ -17,9 +17,14 @@ import {FileService as NodeFileService, IFileServiceOptions, IEncodingOverride} import {IConfigurationService, IConfigurationServiceEvent, ConfigurationServiceEventTypes} from 'vs/platform/configuration/common/configuration'; import {IEventService} from 'vs/platform/event/common/event'; import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace'; +import {Action} from 'vs/base/common/actions'; +import {IMessageService, IMessageWithAction, Severity} from 'vs/platform/message/common/message'; import {shell} from 'electron'; +// If we run with .NET framework < 4.5, we need to detect this error to inform the user +const NET_VERSION_ERROR = 'System.MissingMethodException'; + export class FileService implements IFileService { public serviceId = IFileService; @@ -31,7 +36,8 @@ export class FileService implements IFileService { constructor( private configurationService: IConfigurationService, private eventService: IEventService, - private contextService: IWorkspaceContextService + private contextService: IWorkspaceContextService, + private messageService: IMessageService ) { const configuration = this.configurationService.getConfiguration(); @@ -49,7 +55,7 @@ export class FileService implements IFileService { // build config let fileServiceConfig: IFileServiceOptions = { - errorLogger: (msg: string) => errors.onUnexpectedError(msg), + errorLogger: (msg: string) => this.onFileServiceError(msg), encoding: configuration.files && configuration.files.encoding, encodingOverride: encodingOverride, watcherIgnoredPatterns: watcherIgnoredPatterns, @@ -58,12 +64,30 @@ export class FileService implements IFileService { // create service let workspace = this.contextService.getWorkspace(); - this.raw = new NodeFileService(workspace ? workspace.resource.fsPath : void 0, this.eventService, fileServiceConfig); + this.raw = new NodeFileService(workspace ? workspace.resource.fsPath : void 0, fileServiceConfig, this.eventService); // Listeners this.registerListeners(); } + private onFileServiceError(msg: string): void { + errors.onUnexpectedError(msg); + + // Detect if we run < .NET Framework 4.5 + if (msg && msg.indexOf(NET_VERSION_ERROR) >= 0) { + this.messageService.show(Severity.Warning, { + message: nls.localize('netVersionError', "The Microsoft .NET Framework 4.5 is required. Please follow the link to install it."), + actions: [ + new Action('install.net', nls.localize('installNet', "Download .NET Framework 4.5"), null, true, () => { + shell.openExternal('https://www.microsoft.com/en-us/download/details.aspx?id=30653'); + + return TPromise.as(true); + }) + ] + }); + } + } + private registerListeners(): void { // Config Changes diff --git a/src/vs/workbench/services/files/node/fileService.ts b/src/vs/workbench/services/files/node/fileService.ts index 2dba4286804..9bdaae18bc3 100644 --- a/src/vs/workbench/services/files/node/fileService.ts +++ b/src/vs/workbench/services/files/node/fileService.ts @@ -76,15 +76,13 @@ export class FileService implements files.IFileService { private tmpPath: string; private options: IFileServiceOptions; - private eventEmitter: IEventService; - private workspaceWatcherToDispose: () => void; private activeFileChangesWatchers: { [resource: string]: fs.FSWatcher; }; private fileChangesWatchDelayer: ThrottledDelayer; private undeliveredRawFileChangesEvents: IRawFileChange[]; - constructor(basePath: string, eventEmitter: IEventService, options: IFileServiceOptions) { + constructor(basePath: string, options: IFileServiceOptions, private eventEmitter: IEventService) { this.basePath = basePath ? paths.normalize(basePath) : void 0; if (this.basePath && this.basePath.indexOf('\\\\') === 0 && strings.endsWith(this.basePath, paths.sep)) { @@ -100,7 +98,6 @@ export class FileService implements files.IFileService { } this.options = options || Object.create(null); - this.eventEmitter = eventEmitter; this.tmpPath = this.options.tmpDir || os.tmpdir(); if (this.options && !this.options.errorLogger) { diff --git a/src/vs/workbench/services/files/node/watcher/unix/watcherService.ts b/src/vs/workbench/services/files/node/watcher/unix/watcherService.ts index 862075de7f0..83d60e5c702 100644 --- a/src/vs/workbench/services/files/node/watcher/unix/watcherService.ts +++ b/src/vs/workbench/services/files/node/watcher/unix/watcherService.ts @@ -30,7 +30,13 @@ export class FileWatcher { private isDisposed: boolean; private restartCounter: number; - constructor(private basePath: string, private ignored: string[], private eventEmitter: IEventService, private errorLogger: (msg: string) => void, private verboseLogging: boolean) { + constructor( + private basePath: string, + private ignored: string[], + private eventEmitter: IEventService, + private errorLogger: (msg: string) => void, + private verboseLogging: boolean) + { this.isDisposed = false; this.restartCounter = 0; } diff --git a/src/vs/workbench/services/files/node/watcher/win32/csharpWatcherService.ts b/src/vs/workbench/services/files/node/watcher/win32/csharpWatcherService.ts index 71a2af0cd8c..08ddaf75048 100644 --- a/src/vs/workbench/services/files/node/watcher/win32/csharpWatcherService.ts +++ b/src/vs/workbench/services/files/node/watcher/win32/csharpWatcherService.ts @@ -19,19 +19,14 @@ export class OutOfProcessWin32FolderWatcher { private static changeTypeMap: FileChangeType[] = [FileChangeType.UPDATED, FileChangeType.ADDED, FileChangeType.DELETED]; private handle: cp.ChildProcess; - private watchedFolder: string; - private ignored: string[]; - private verboseLogging: boolean; - private eventCallback: (events: IRawFileChange[]) => void; - private errorLogger: (msg: string) => void; - - constructor(watchedFolder: string, ignored: string[], errorLogger: (msg: string) => void, eventCallback: (events: IRawFileChange[]) => void, verboseLogging: boolean) { - this.watchedFolder = watchedFolder; - this.ignored = ignored; - this.eventCallback = eventCallback; - this.errorLogger = errorLogger; - this.verboseLogging = verboseLogging; + constructor( + private watchedFolder: string, + private ignored: string[], + private eventCallback: (events: IRawFileChange[]) => void, + private errorCallback: (error: string) => void, + private verboseLogging: boolean + ) { this.startWatcher(); } @@ -92,13 +87,13 @@ export class OutOfProcessWin32FolderWatcher { this.handle.on('exit', (code: any, signal: any) => this.onExit(code, signal)); } - private onError(error: Error|NodeBuffer): void { - this.errorLogger('[FileWatcher] process error: ' + error.toString()); + private onError(error: Error | NodeBuffer): void { + this.errorCallback('[FileWatcher] process error: ' + error.toString()); } private onExit(code: any, signal: any): void { if (this.handle) { // exit while not yet being disposed is unexpected! - this.errorLogger('[FileWatcher] terminated unexpectedly (code: ' + code + ', signal: ' + signal + ')'); + this.errorCallback('[FileWatcher] terminated unexpectedly (code: ' + code + ', signal: ' + signal + ')'); this.startWatcher(); // restart } } diff --git a/src/vs/workbench/services/files/node/watcher/win32/watcherService.ts b/src/vs/workbench/services/files/node/watcher/win32/watcherService.ts index f6d102c49f0..6e81a9d49b4 100644 --- a/src/vs/workbench/services/files/node/watcher/win32/watcherService.ts +++ b/src/vs/workbench/services/files/node/watcher/win32/watcherService.ts @@ -11,18 +11,22 @@ import {OutOfProcessWin32FolderWatcher} from 'vs/workbench/services/files/node/w import {IEventService} from 'vs/platform/event/common/event'; export class FileWatcher { - private eventEmitter: IEventService; - constructor(private basePath: string, private ignored: string[], eventEmitter: IEventService, private errorLogger: (msg: string) => void, private verboseLogging: boolean) { - this.eventEmitter = eventEmitter; + constructor( + private basePath: string, + private ignored: string[], + private eventEmitter: IEventService, + private errorLogger: (msg: string) => void, + private verboseLogging: boolean + ) { } public startWatching(): () => void { let watcher = new OutOfProcessWin32FolderWatcher( this.basePath, this.ignored, - this.errorLogger, (events) => this.onRawFileEvents(events), + (error) => this.onError(error), this.verboseLogging ); @@ -36,4 +40,8 @@ export class FileWatcher { this.eventEmitter.emit(EventType.FILE_CHANGES, watcher.toFileChangesEvent(events)); } } + + private onError(error: string): void { + this.errorLogger(error); + } } \ No newline at end of file diff --git a/src/vs/workbench/services/files/test/node/fileService.test.ts b/src/vs/workbench/services/files/test/node/fileService.test.ts index bf9b6eb69b9..c2dbc56bfd6 100644 --- a/src/vs/workbench/services/files/test/node/fileService.test.ts +++ b/src/vs/workbench/services/files/test/node/fileService.test.ts @@ -32,7 +32,7 @@ suite('FileService', () => { extfs.copy(sourceDir, testDir, () => { events = new utils.TestEventService(); - service = new FileService(testDir, events, { disableWatcher: true }); + service = new FileService(testDir, { disableWatcher: true }, events); done(); }); }); @@ -457,11 +457,11 @@ suite('FileService', () => { encoding: 'utf16le' }); - let _service = new FileService(_testDir, null, { + let _service = new FileService(_testDir, { encoding: 'windows1252', encodingOverride: encodingOverride, disableWatcher: true - }); + }, null); _service.resolveContent(uri.file(path.join(testDir, 'index.html'))).done(c => { assert.equal(c.encoding, 'windows1252'); @@ -485,9 +485,9 @@ suite('FileService', () => { let _sourceDir = require.toUrl('./fixtures/service'); let resource = uri.file(path.join(testDir, 'index.html')); - let _service = new FileService(_testDir, null, { + let _service = new FileService(_testDir, { disableWatcher: true - }); + }, null); extfs.copy(_sourceDir, _testDir, () => { fs.readFile(resource.fsPath, (error, data) => { From b0f260cc63c78c434737861be00b7e6f9afb8ab7 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 11 Apr 2016 07:56:21 +0200 Subject: [PATCH 010/117] some linting in unit tests --- src/vs/base/test/browser/builder.test.ts | 1194 ++++++++--------- src/vs/base/test/browser/progressBar.test.ts | 5 +- src/vs/base/test/browser/quickopen.test.ts | 2 +- src/vs/base/test/common/actions.test.ts | 4 +- src/vs/base/test/common/arrays.test.ts | 12 +- src/vs/base/test/common/assert.test.ts | 11 +- src/vs/base/test/common/async.test.ts | 1 - src/vs/base/test/common/cancellation.test.ts | 6 +- src/vs/base/test/common/errors.test.ts | 22 +- src/vs/base/test/common/glob.test.ts | 34 +- src/vs/base/test/common/graph.test.ts | 6 +- src/vs/base/test/common/objects.test.ts | 2 +- src/vs/base/test/common/scorer.test.ts | 6 +- src/vs/base/test/common/strings.test.ts | 14 +- src/vs/base/test/common/types.test.ts | 20 +- .../test/node/aiAdapter/aiAdapter.test.ts | 32 +- src/vs/base/test/node/decoder.test.ts | 2 +- .../base/test/node/encoding/encoding.test.ts | 11 +- src/vs/base/test/node/env.test.ts | 26 +- src/vs/base/test/node/extfs/extfs.test.ts | 11 +- src/vs/base/test/node/flow.test.ts | 216 +-- src/vs/base/test/node/mime/mime.test.ts | 12 +- src/vs/base/test/node/service/service.test.ts | 4 +- src/vs/base/test/node/stream/stream.test.ts | 8 +- .../parts/files/test/browser/events.test.ts | 17 +- .../test/browser/fileEditorInput.test.ts | 36 +- .../test/browser/fileEditorModel.test.ts | 76 +- .../files/test/browser/textFileEditor.test.ts | 12 +- .../browser/textFileEditorModelCache.test.ts | 2 +- .../files/test/browser/viewModel.test.ts | 199 ++- .../parts/output/test/outputWorker.test.ts | 2 +- .../search/test/browser/searchViewlet.test.ts | 4 +- .../search/test/common/searchModel.test.ts | 12 +- .../files/test/node/fileService.test.ts | 70 +- .../services/files/test/node/resolver.test.ts | 24 +- .../services/files/test/node/watcher.test.ts | 18 +- .../services/search/test/node/search.test.ts | 71 +- .../test/browser/actionRegistry.test.ts | 12 +- src/vs/workbench/test/browser/events.test.ts | 26 +- src/vs/workbench/test/browser/memento.test.ts | 82 +- src/vs/workbench/test/browser/part.test.ts | 46 +- .../browser/parts/editor/baseEditor.test.ts | 90 +- .../browser/parts/editor/editorInput.test.ts | 25 +- .../browser/parts/editor/editorModel.test.ts | 25 +- .../parts/editor/editorOptions.test.ts | 6 +- .../parts/editor/stringEditorInput.test.ts | 66 +- .../parts/editor/stringEditorModel.test.ts | 52 +- .../browser/parts/quickOpen/quickopen.test.ts | 71 +- .../workbench/test/browser/services.test.ts | 30 +- .../test/browser/servicesTestUtils.ts | 12 +- src/vs/workbench/test/browser/storage.test.ts | 152 +-- src/vs/workbench/test/browser/viewlet.test.ts | 34 +- .../test/node/api/extHostDocuments.test.ts | 8 +- .../node/api/extHostLanguageFeatures.test.ts | 58 +- .../test/node/api/extHostTypes.test.ts | 10 +- 55 files changed, 1488 insertions(+), 1521 deletions(-) diff --git a/src/vs/base/test/browser/builder.test.ts b/src/vs/base/test/browser/builder.test.ts index b170a971647..a116db984db 100644 --- a/src/vs/base/test/browser/builder.test.ts +++ b/src/vs/base/test/browser/builder.test.ts @@ -11,7 +11,7 @@ import * as DomUtils from 'vs/base/browser/dom'; import { TPromise } from 'vs/base/common/winjs.base'; import { IDisposable } from 'vs/base/common/lifecycle'; -var withElementsBySelector = function(selector: string, offdom: boolean = false) { +var withElementsBySelector = function (selector: string, offdom: boolean = false) { var elements = window.document.querySelectorAll(selector); var builders = []; @@ -22,7 +22,7 @@ var withElementsBySelector = function(selector: string, offdom: boolean = false) return new MultiBuilder(builders); }; -var withBuilder = function(builder, offdom) { +var withBuilder = function (builder, offdom) { if (builder instanceof MultiBuilder) { return new MultiBuilder(builder); } @@ -30,9 +30,9 @@ var withBuilder = function(builder, offdom) { return new Builder(builder.getHTMLElement(), offdom); }; -suite("Builder", () => { +suite('Builder', () => { var fixture: HTMLElement; - var fixtureId = "builder-fixture"; + var fixtureId = 'builder-fixture'; setup(() => { fixture = document.createElement('div'); @@ -44,61 +44,61 @@ suite("Builder", () => { document.body.removeChild(fixture); }); - test("Dimension.substract()", function () { + test('Dimension.substract()', function () { var d1 = new Dimension(200, 100); var d2 = new Box(10, 20, 30, 40); assert.deepEqual(d1.substract(d2), new Dimension(140, 60)); }); - test("Position", function () { + test('Position', function () { var p = new Position(200, 100); assert.strictEqual(p.x, 200); assert.strictEqual(p.y, 100); }); - test("Binding", function () { + test('Binding', function () { var b = Build.withElementById(fixtureId, false); var element = b.getHTMLElement(); assert(element); // Properties - Binding.setPropertyOnElement(element, "foo", "bar"); - assert.strictEqual(Binding.getPropertyFromElement(element, "foo"), "bar"); + Binding.setPropertyOnElement(element, 'foo', 'bar'); + assert.strictEqual(Binding.getPropertyFromElement(element, 'foo'), 'bar'); - Binding.setPropertyOnElement(element, "foo", { foo: "bar" }); - assert.deepEqual(Binding.getPropertyFromElement(element, "foo"), { foo: "bar" }); + Binding.setPropertyOnElement(element, 'foo', { foo: 'bar' }); + assert.deepEqual(Binding.getPropertyFromElement(element, 'foo'), { foo: 'bar' }); - Binding.removePropertyFromElement(element, "foo"); + Binding.removePropertyFromElement(element, 'foo'); - Binding.setPropertyOnElement(element, "bar", "bar"); - assert.strictEqual(Binding.getPropertyFromElement(element, "bar"), "bar"); + Binding.setPropertyOnElement(element, 'bar', 'bar'); + assert.strictEqual(Binding.getPropertyFromElement(element, 'bar'), 'bar'); - Binding.setPropertyOnElement(element, "bar", { foo: "bar" }); - assert.deepEqual(Binding.getPropertyFromElement(element, "bar"), { foo: "bar" }); + Binding.setPropertyOnElement(element, 'bar', { foo: 'bar' }); + assert.deepEqual(Binding.getPropertyFromElement(element, 'bar'), { foo: 'bar' }); - Binding.removePropertyFromElement(element, "bar"); + Binding.removePropertyFromElement(element, 'bar'); - assert(!Binding.getPropertyFromElement(element, "foo")); - assert(!Binding.getPropertyFromElement(element, "bar")); + assert(!Binding.getPropertyFromElement(element, 'foo')); + assert(!Binding.getPropertyFromElement(element, 'bar')); // Binding - Binding.bindElement(element, "bar"); - assert.strictEqual(Binding.getBindingFromElement(element), "bar"); + Binding.bindElement(element, 'bar'); + assert.strictEqual(Binding.getBindingFromElement(element), 'bar'); - Binding.bindElement(element, { foo: "bar" }); - assert.deepEqual(Binding.getBindingFromElement(element), { foo: "bar" }); + Binding.bindElement(element, { foo: 'bar' }); + assert.deepEqual(Binding.getBindingFromElement(element), { foo: 'bar' }); Binding.unbindElement(element); assert(!Binding.getBindingFromElement(element)); }); - test("Select", function () { + test('Select', function () { var b = Build.withElementById(fixtureId, false); assert(b); - var allDivs = withElementsBySelector("div"); + var allDivs = withElementsBySelector('div'); assert(allDivs); assert(allDivs.length >= 1); @@ -112,7 +112,7 @@ suite("Builder", () => { } } - var noElement = withElementsBySelector("#thiselementdoesnotexist"); + var noElement = withElementsBySelector('#thiselementdoesnotexist'); assert(noElement); assert(noElement.length === 0); @@ -127,188 +127,188 @@ suite("Builder", () => { } }); - test("Build.withElement()", function () { + test('Build.withElement()', function () { var f = Build.withElementById(fixtureId, false); var b = $(f.getHTMLElement()); - b.addClass("foo"); - assert(b.hasClass("foo")); + b.addClass('foo'); + assert(b.hasClass('foo')); - b.removeClass("foo"); - assert(!b.hasClass("foo")); + b.removeClass('foo'); + assert(!b.hasClass('foo')); assert.strictEqual(f.getHTMLElement(), document.getElementById(fixtureId)); assert.strictEqual(b.getHTMLElement(), document.getElementById(fixtureId)); }); - test("Build.withBuilder()", function () { + test('Build.withBuilder()', function () { var f = Build.withElementById(fixtureId, false); var b = withBuilder(f, false); - b.addClass("foo"); - assert(b.hasClass("foo")); + b.addClass('foo'); + assert(b.hasClass('foo')); - b.removeClass("foo"); - assert(!b.hasClass("foo")); + b.removeClass('foo'); + assert(!b.hasClass('foo')); assert.strictEqual(f.getHTMLElement(), document.getElementById(fixtureId)); assert.strictEqual(b.getHTMLElement(), document.getElementById(fixtureId)); }); - test("Build.withBuilder() - Multibuilder", function () { - var f = withElementsBySelector("#" + fixtureId); + test('Build.withBuilder() - Multibuilder', function () { + var f = withElementsBySelector('#' + fixtureId); var b = withBuilder(f, false); - b.addClass("foo"); - assert(b.hasClass("foo")[0]); + b.addClass('foo'); + assert(b.hasClass('foo')[0]); - b.removeClass("foo"); - assert(!b.hasClass("foo")[0]); + b.removeClass('foo'); + assert(!b.hasClass('foo')[0]); }); - test("Build.offDOM()", function () { + test('Build.offDOM()', function () { var b = $(); assert(b); b.div({ - id: "foobar" - }, function(div) { + id: 'foobar' + }, function (div) { div.span({ - id: "foobarspan", - innerHtml: "foo bar" + id: 'foobarspan', + innerHtml: 'foo bar' }); }); - assert(Build.withElementById("foobar") === null); + assert(Build.withElementById('foobar') === null); b.build(Build.withElementById(fixtureId, false)); - assert(Build.withElementById("foobar")); - assert(Build.withElementById("foobarspan")); - assert.strictEqual(Build.withElementById("foobarspan").getHTMLElement().innerHTML, "foo bar"); + assert(Build.withElementById('foobar')); + assert(Build.withElementById('foobarspan')); + assert.strictEqual(Build.withElementById('foobarspan').getHTMLElement().innerHTML, 'foo bar'); }); - test("Build.withElementById()", function () { + test('Build.withElementById()', function () { var b = Build.withElementById(fixtureId, false); - b.addClass("foo"); - assert(b.hasClass("foo")); + b.addClass('foo'); + assert(b.hasClass('foo')); - b.removeClass("foo"); - assert(!b.hasClass("foo")); + b.removeClass('foo'); + assert(!b.hasClass('foo')); assert.strictEqual(b.getHTMLElement(), document.getElementById(fixtureId)); }); - test("withElementsBySelector()", function () { - var b = withElementsBySelector("#" + fixtureId, false); + test('withElementsBySelector()', function () { + var b = withElementsBySelector('#' + fixtureId, false); - b.addClass("foo"); - assert(b.hasClass("foo")[0]); + b.addClass('foo'); + assert(b.hasClass('foo')[0]); - b.removeClass("foo"); - assert(!b.hasClass("foo")[0]); + b.removeClass('foo'); + assert(!b.hasClass('foo')[0]); }); - test("Off DOM withElementById and container passed in", function () { + test('Off DOM withElementById and container passed in', function () { var b = Build.withElementById(fixtureId, true); assert(b); assert.strictEqual(b.getHTMLElement(), document.getElementById(fixtureId)); b.div({ - id: "foobar" - }, function(div) { + id: 'foobar' + }, function (div) { div.span({ - id: "foobarspan", - innerHtml: "foo bar" + id: 'foobarspan', + innerHtml: 'foo bar' }); }); - assert(Build.withElementById("foobar") === null); + assert(Build.withElementById('foobar') === null); b.build(); - assert(Build.withElementById("foobar")); - assert(Build.withElementById("foobarspan")); - assert.strictEqual(Build.withElementById("foobarspan").getHTMLElement().innerHTML, "foo bar"); + assert(Build.withElementById('foobar')); + assert(Build.withElementById('foobarspan')); + assert.strictEqual(Build.withElementById('foobarspan').getHTMLElement().innerHTML, 'foo bar'); }); - test("Off DOM withSelector and container passed in", function () { - var b = withElementsBySelector("#" + fixtureId, true); + test('Off DOM withSelector and container passed in', function () { + var b = withElementsBySelector('#' + fixtureId, true); assert(b); b.div({ - id: "foobar" - }, function(div) { + id: 'foobar' + }, function (div) { div.span({ - id: "foobarspan", - innerHtml: "foo bar" + id: 'foobarspan', + innerHtml: 'foo bar' }); }); - assert(Build.withElementById("foobar") === null); + assert(Build.withElementById('foobar') === null); b.build(); - assert(Build.withElementById("foobar")); - assert(Build.withElementById("foobarspan")); - assert.strictEqual(Build.withElementById("foobarspan").getHTMLElement().innerHTML, "foo bar"); + assert(Build.withElementById('foobar')); + assert(Build.withElementById('foobarspan')); + assert.strictEqual(Build.withElementById('foobarspan').getHTMLElement().innerHTML, 'foo bar'); }); - test("Builder.build() with index specified", function () { + test('Builder.build() with index specified', function () { var b = Build.withElementById(fixtureId); b.empty(); - b.div({ id: "1" }); - b.div({ id: "2" }); - b.div({ id: "3" }); + b.div({ id: '1' }); + b.div({ id: '2' }); + b.div({ id: '3' }); b = $(); - b.div({ id: "4" }); + b.div({ id: '4' }); b.build(Build.withElementById(fixtureId), 0); b = Build.withElementById(fixtureId); - var divs = b.select("div"); + var divs = b.select('div'); assert.strictEqual(divs.length, 4); - var ids = divs.attr("id"); + var ids = divs.attr('id'); assert.strictEqual(ids.length, 4); - assert.strictEqual(ids[0], "4"); - assert.strictEqual(ids[1], "1"); - assert.strictEqual(ids[2], "2"); - assert.strictEqual(ids[3], "3"); + assert.strictEqual(ids[0], '4'); + assert.strictEqual(ids[1], '1'); + assert.strictEqual(ids[2], '2'); + assert.strictEqual(ids[3], '3'); b = $(); - b.div({ id: "5" }); + b.div({ id: '5' }); b.build(Build.withElementById(fixtureId), 2); b = Build.withElementById(fixtureId); - divs = b.select("div"); + divs = b.select('div'); assert.strictEqual(divs.length, 5); - ids = divs.attr("id"); + ids = divs.attr('id'); assert.strictEqual(ids.length, 5); - assert.strictEqual(ids[0], "4"); - assert.strictEqual(ids[1], "1"); - assert.strictEqual(ids[2], "5"); - assert.strictEqual(ids[3], "2"); - assert.strictEqual(ids[4], "3"); + assert.strictEqual(ids[0], '4'); + assert.strictEqual(ids[1], '1'); + assert.strictEqual(ids[2], '5'); + assert.strictEqual(ids[3], '2'); + assert.strictEqual(ids[4], '3'); }); - test("Builder.asContainer()", function () { + test('Builder.asContainer()', function () { var f = Build.withElementById(fixtureId, false); f.div({ - id: "foobar" + id: 'foobar' }); var divBuilder = f.asContainer(); divBuilder.span({ - innerHtml: "see man" + innerHtml: 'see man' }); - assert.strictEqual(divBuilder.parent().attr("id"), "foobar"); + assert.strictEqual(divBuilder.parent().attr('id'), 'foobar'); }); - test("Builder.clone()", function () { + test('Builder.clone()', function () { var b = Build.withElementById(fixtureId); var clone = b.clone(); @@ -317,13 +317,13 @@ suite("Builder", () => { assert.strictEqual(b.getHTMLElement(), clone.getHTMLElement()); assert.deepEqual(b, clone); - var multiB = withElementsBySelector("div"); + var multiB = withElementsBySelector('div'); var multiClone = multiB.clone(); - assert(clone); + assert(multiClone); }); - test("Builder.and() with 2 Builders", function () { + test('Builder.and() with 2 Builders', function () { var b = Build.withElementById(fixtureId); var otherB = Build.withElementById(fixtureId); @@ -332,10 +332,10 @@ suite("Builder", () => { assert.strictEqual(bAndB.length, 2); - assert.deepEqual(bAndB.attr("id"), [fixtureId, fixtureId]); + assert.deepEqual(bAndB.attr('id'), [fixtureId, fixtureId]); }); - test("Builder.and() with HTMLElement", function () { + test('Builder.and() with HTMLElement', function () { var b = Build.withElementById(fixtureId); var otherB = Build.withElementById(fixtureId); @@ -344,24 +344,24 @@ suite("Builder", () => { assert.strictEqual(bAndB.length, 2); - assert.deepEqual(bAndB.attr("id"), [fixtureId, fixtureId]); + assert.deepEqual(bAndB.attr('id'), [fixtureId, fixtureId]); }); - test("Builder.and() with MultiBuilder", function () { + test('Builder.and() with MultiBuilder', function () { var b = Build.withElementById(fixtureId); - var allDivs = withElementsBySelector("div"); + var allDivs = withElementsBySelector('div'); var bAndB = b.and(allDivs); assert.strictEqual(bAndB.length, 1 + allDivs.length); }); - test("Builder.and() with two MultiBuilders", function () { - var allDivs = withElementsBySelector("div"); + test('Builder.and() with two MultiBuilders', function () { + var allDivs = withElementsBySelector('div'); var allDivsCount = allDivs.length; - var otherAllDivs = withElementsBySelector("div"); + var otherAllDivs = withElementsBySelector('div'); var allDivsAndAllDivs = allDivs.and(otherAllDivs); @@ -369,8 +369,8 @@ suite("Builder", () => { assert.strictEqual(allDivs.length, allDivsCount * 2); }); - test("Builder.and() with MultiBuilder and HTMLElement", function () { - var allDivs = withElementsBySelector("div"); + test('Builder.and() with MultiBuilder and HTMLElement', function () { + var allDivs = withElementsBySelector('div'); var len = allDivs.length; var allDivsFixture = allDivs.and(Build.withElementById(fixtureId).getHTMLElement()); @@ -379,70 +379,70 @@ suite("Builder", () => { assert.strictEqual(allDivs.length, len + 1); }); - test("Builder Multibuilder fn call that returns Multibuilder", function () { + test('Builder Multibuilder fn call that returns Multibuilder', function () { var b = Build.withElementById(fixtureId); - b.div(function(div) { + b.div(function (div) { div.span(); }); - b.div(function(div) { + b.div(function (div) { div.span(); }); - b.div(function(div) { + b.div(function (div) { div.span(); }); - var multiBuilder = Build.withElementById(fixtureId).select("div"); + var multiBuilder = Build.withElementById(fixtureId).select('div'); assert(multiBuilder.length === 3); - assert(multiBuilder.select("span").length === 3); + assert(multiBuilder.select('span').length === 3); }); - test("Builder.p() and other elements", function () { + test('Builder.p() and other elements', function () { var b = Build.withElementById(fixtureId); b.empty(); - b.div(function(div) { + b.div(function (div) { assert(div !== b); - assert.strictEqual("div", div.getHTMLElement().nodeName.toLowerCase()); + assert.strictEqual('div', div.getHTMLElement().nodeName.toLowerCase()); - div.p(function(p) { - p.ul(function(ul) { - ul.li(function(li) { + div.p(function (p) { + p.ul(function (ul) { + ul.li(function (li) { li.span({ - id: "builderspan", - innerHtml: "Foo Bar" + id: 'builderspan', + innerHtml: 'Foo Bar' }); - assert.strictEqual("span", li.getHTMLElement().nodeName.toLowerCase()); + assert.strictEqual('span', li.getHTMLElement().nodeName.toLowerCase()); li.img({ - id: "builderimg", - src: "#" + id: 'builderimg', + src: '#' }); - assert.strictEqual("img", li.getHTMLElement().nodeName.toLowerCase()); + assert.strictEqual('img', li.getHTMLElement().nodeName.toLowerCase()); li.a({ - id: "builderlink", - href: "#", - innerHtml: "Link" + id: 'builderlink', + href: '#', + innerHtml: 'Link' }); - assert.strictEqual("a", li.getHTMLElement().nodeName.toLowerCase()); + assert.strictEqual('a', li.getHTMLElement().nodeName.toLowerCase()); }); }); }); - assert.strictEqual("p", div.getHTMLElement().nodeName.toLowerCase()); + assert.strictEqual('p', div.getHTMLElement().nodeName.toLowerCase()); }); - assert.strictEqual(Build.withElementById(fixtureId).select("div").length, 1); - assert.strictEqual(Build.withElementById(fixtureId).select("*").length, 7); + assert.strictEqual(Build.withElementById(fixtureId).select('div').length, 1); + assert.strictEqual(Build.withElementById(fixtureId).select('*').length, 7); - assert.strictEqual(Build.withElementById("builderspan").getHTMLElement().innerHTML, "Foo Bar"); - assert.strictEqual(Build.withElementById("builderimg").attr("src"), "#"); - assert.strictEqual(Build.withElementById("builderlink").attr("href"), "#"); + assert.strictEqual(Build.withElementById('builderspan').getHTMLElement().innerHTML, 'Foo Bar'); + assert.strictEqual(Build.withElementById('builderimg').attr('src'), '#'); + assert.strictEqual(Build.withElementById('builderlink').attr('href'), '#'); // Assert HTML through DOM var root = document.getElementById(fixtureId); @@ -450,456 +450,456 @@ suite("Builder", () => { assert.strictEqual(root.childNodes.length, 1); var div = root.childNodes[0]; - assert.strictEqual("div", div.nodeName.toLowerCase()); + assert.strictEqual('div', div.nodeName.toLowerCase()); assert.strictEqual(b.getHTMLElement(), div); assert.strictEqual(div.childNodes.length, 1); var p = div.childNodes[0]; - assert.strictEqual("p", p.nodeName.toLowerCase()); + assert.strictEqual('p', p.nodeName.toLowerCase()); assert.strictEqual(p.childNodes.length, 1); var ul = p.childNodes[0]; - assert.strictEqual("ul", ul.nodeName.toLowerCase()); + assert.strictEqual('ul', ul.nodeName.toLowerCase()); assert.strictEqual(ul.childNodes.length, 1); var li = ul.childNodes[0]; - assert.strictEqual("li", li.nodeName.toLowerCase()); + assert.strictEqual('li', li.nodeName.toLowerCase()); assert.strictEqual(li.childNodes.length, 3); var span = li.childNodes[0]; - assert.strictEqual("span", span.nodeName.toLowerCase()); + assert.strictEqual('span', span.nodeName.toLowerCase()); assert.strictEqual(span.childNodes.length, 1); - assert.strictEqual(span.innerHTML, "Foo Bar"); + assert.strictEqual(span.innerHTML, 'Foo Bar'); var img = li.childNodes[1]; - assert.strictEqual("img", img.nodeName.toLowerCase()); + assert.strictEqual('img', img.nodeName.toLowerCase()); assert.strictEqual(img.childNodes.length, 0); - assert.strictEqual(img.getAttribute("src"), "#"); + assert.strictEqual(img.getAttribute('src'), '#'); var a = li.childNodes[2]; - assert.strictEqual("a", a.nodeName.toLowerCase()); + assert.strictEqual('a', a.nodeName.toLowerCase()); assert.strictEqual(a.childNodes.length, 1); - assert.strictEqual(a.getAttribute("href"), "#"); - assert.strictEqual(a.innerHTML, "Link"); + assert.strictEqual(a.getAttribute('href'), '#'); + assert.strictEqual(a.innerHTML, 'Link'); }); - test("Builder.p() and other elements", function () { + test('Builder.p() and other elements', function () { var b = Build.withElementById(fixtureId); - b.element("div", function(div) { - div.element("p", function(p) { - p.element("ul", function(ul) { - ul.element("li", function(li) { - li.element("span", { - id: "builderspan", - innerHtml: "Foo Bar" + b.element('div', function (div) { + div.element('p', function (p) { + p.element('ul', function (ul) { + ul.element('li', function (li) { + li.element('span', { + id: 'builderspan', + innerHtml: 'Foo Bar' }); - li.element("img", { - id: "builderimg", - src: "#" + li.element('img', { + id: 'builderimg', + src: '#' }); - li.element("a", { - id: "builderlink", - href: "#", - innerHtml: "Link" + li.element('a', { + id: 'builderlink', + href: '#', + innerHtml: 'Link' }); }); }); }); }); - assert.strictEqual(Build.withElementById(fixtureId).select("div").length, 1); - assert.strictEqual(Build.withElementById(fixtureId).select("*").length, 7); + assert.strictEqual(Build.withElementById(fixtureId).select('div').length, 1); + assert.strictEqual(Build.withElementById(fixtureId).select('*').length, 7); - assert.strictEqual(Build.withElementById("builderspan").getHTMLElement().innerHTML, "Foo Bar"); - assert.strictEqual(Build.withElementById("builderimg").attr("src"), "#"); - assert.strictEqual(Build.withElementById("builderlink").attr("href"), "#"); + assert.strictEqual(Build.withElementById('builderspan').getHTMLElement().innerHTML, 'Foo Bar'); + assert.strictEqual(Build.withElementById('builderimg').attr('src'), '#'); + assert.strictEqual(Build.withElementById('builderlink').attr('href'), '#'); }); - test("Builder.attr()", function () { + test('Builder.attr()', function () { var b = Build.withElementById(fixtureId); b.div(); - assert(!b.attr("id")); - b.attr("id", "foobar"); - assert.strictEqual(b.attr("id"), "foobar"); + assert(!b.attr('id')); + b.attr('id', 'foobar'); + assert.strictEqual(b.attr('id'), 'foobar'); b.attr({ - id: "barfoo", + id: 'barfoo', padding: [4, 3, 2, 1], - margin: "4px 3px 2px 1px" + margin: '4px 3px 2px 1px' }); - assert.strictEqual(b.attr("id"), "barfoo"); - assert.strictEqual(b.getHTMLElement().getAttribute("id"), "barfoo"); - assert.strictEqual(b.style("margin-top"), "4px"); - assert.strictEqual(b.getHTMLElement().style.marginTop, "4px"); - assert.strictEqual(b.style("margin-right"), "3px"); - assert.strictEqual(b.style("margin-bottom"), "2px"); - assert.strictEqual(b.style("margin-left"), "1px"); + assert.strictEqual(b.attr('id'), 'barfoo'); + assert.strictEqual(b.getHTMLElement().getAttribute('id'), 'barfoo'); + assert.strictEqual(b.style('margin-top'), '4px'); + assert.strictEqual(b.getHTMLElement().style.marginTop, '4px'); + assert.strictEqual(b.style('margin-right'), '3px'); + assert.strictEqual(b.style('margin-bottom'), '2px'); + assert.strictEqual(b.style('margin-left'), '1px'); - assert.strictEqual(b.style("padding-top"), "4px"); - assert.strictEqual(b.style("padding-right"), "3px"); - assert.strictEqual(b.style("padding-bottom"), "2px"); - assert.strictEqual(b.style("padding-left"), "1px"); + assert.strictEqual(b.style('padding-top'), '4px'); + assert.strictEqual(b.style('padding-right'), '3px'); + assert.strictEqual(b.style('padding-bottom'), '2px'); + assert.strictEqual(b.style('padding-left'), '1px'); b.attr({ - padding: "1 2 3 4", - position: "100 200 300 400", - size: "200 300" + padding: '1 2 3 4', + position: '100 200 300 400', + size: '200 300' }); - assert.strictEqual(b.style("padding-top"), "1px"); - assert.strictEqual(b.style("padding-right"), "2px"); - assert.strictEqual(b.style("padding-bottom"), "3px"); - assert.strictEqual(b.style("padding-left"), "4px"); + assert.strictEqual(b.style('padding-top'), '1px'); + assert.strictEqual(b.style('padding-right'), '2px'); + assert.strictEqual(b.style('padding-bottom'), '3px'); + assert.strictEqual(b.style('padding-left'), '4px'); - assert.strictEqual(b.style("top"), "100px"); - assert.strictEqual(b.style("right"), "200px"); - assert.strictEqual(b.style("bottom"), "300px"); - assert.strictEqual(b.style("left"), "400px"); + assert.strictEqual(b.style('top'), '100px'); + assert.strictEqual(b.style('right'), '200px'); + assert.strictEqual(b.style('bottom'), '300px'); + assert.strictEqual(b.style('left'), '400px'); - assert.strictEqual(b.style("width"), "200px"); - assert.strictEqual(b.style("height"), "300px"); + assert.strictEqual(b.style('width'), '200px'); + assert.strictEqual(b.style('height'), '300px'); }); - test("Builder.style()", function () { + test('Builder.style()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.style("padding-bottom", "5px"); - b.style("paddingTop", "4px"); + b.style('padding-bottom', '5px'); + b.style('paddingTop', '4px'); - assert.strictEqual(b.style("paddingBottom"), "5px"); - assert.strictEqual(b.style("padding-bottom"), "5px"); + assert.strictEqual(b.style('paddingBottom'), '5px'); + assert.strictEqual(b.style('padding-bottom'), '5px'); - assert.strictEqual(b.style("paddingTop"), "4px"); - assert.strictEqual(b.style("padding-top"), "4px"); + assert.strictEqual(b.style('paddingTop'), '4px'); + assert.strictEqual(b.style('padding-top'), '4px'); }); - test("Builder.style() as object literal", function () { + test('Builder.style() as object literal', function () { var b = Build.withElementById(fixtureId); b.div(); b.style({ - "padding-bottom": "5px", - paddingTop: "4px", - border: "1px solid red" + 'padding-bottom': '5px', + paddingTop: '4px', + border: '1px solid red' }); - assert.strictEqual(b.getHTMLElement().style.paddingBottom, "5px"); + assert.strictEqual(b.getHTMLElement().style.paddingBottom, '5px'); - assert.strictEqual(b.style("paddingBottom"), "5px"); - assert.strictEqual(b.style("padding-bottom"), "5px"); + assert.strictEqual(b.style('paddingBottom'), '5px'); + assert.strictEqual(b.style('padding-bottom'), '5px'); - assert.strictEqual(b.style("paddingTop"), "4px"); - assert.strictEqual(b.style("padding-top"), "4px"); + assert.strictEqual(b.style('paddingTop'), '4px'); + assert.strictEqual(b.style('padding-top'), '4px'); - assert.strictEqual(b.style("border-width"), "1px"); - assert.strictEqual(b.style("border-style"), "solid"); - assert.strictEqual(b.style("border-color"), "red"); + assert.strictEqual(b.style('border-width'), '1px'); + assert.strictEqual(b.style('border-style'), 'solid'); + assert.strictEqual(b.style('border-color'), 'red'); }); - test("Builder.attributes", function () { + test('Builder.attributes', function () { var b = Build.withElementById(fixtureId); b.div(); - b.id("foobar"); - b.src("foobar"); - b.href("foobar"); - b.title("foobar"); - b.name("foobar"); - b.type("foobar"); - b.value("foobar"); - b.alt("foobar"); + b.id('foobar'); + b.src('foobar'); + b.href('foobar'); + b.title('foobar'); + b.name('foobar'); + b.type('foobar'); + b.value('foobar'); + b.alt('foobar'); b.draggable(true); b.tabindex(0); - assert.strictEqual(b.attr("id"), "foobar"); - assert.strictEqual(b.attr("src"), "foobar"); - assert.strictEqual(b.attr("href"), "foobar"); - assert.strictEqual(b.attr("title"), "foobar"); - assert.strictEqual(b.attr("name"), "foobar"); - assert.strictEqual(b.attr("type"), "foobar"); - assert.strictEqual(b.attr("value"), "foobar"); - assert.strictEqual(b.attr("alt"), "foobar"); - assert.strictEqual(b.attr("draggable"), "true"); - assert.strictEqual(b.attr("tabindex"), "0"); + assert.strictEqual(b.attr('id'), 'foobar'); + assert.strictEqual(b.attr('src'), 'foobar'); + assert.strictEqual(b.attr('href'), 'foobar'); + assert.strictEqual(b.attr('title'), 'foobar'); + assert.strictEqual(b.attr('name'), 'foobar'); + assert.strictEqual(b.attr('type'), 'foobar'); + assert.strictEqual(b.attr('value'), 'foobar'); + assert.strictEqual(b.attr('alt'), 'foobar'); + assert.strictEqual(b.attr('draggable'), 'true'); + assert.strictEqual(b.attr('tabindex'), '0'); - assert.strictEqual(b.getHTMLElement().getAttribute("id"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("src"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("href"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("title"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("name"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("type"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("value"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("alt"), "foobar"); - assert.strictEqual(b.getHTMLElement().getAttribute("draggable"), "true"); - assert.strictEqual(b.getHTMLElement().getAttribute("tabindex"), "0"); + assert.strictEqual(b.getHTMLElement().getAttribute('id'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('src'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('href'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('title'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('name'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('type'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('value'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('alt'), 'foobar'); + assert.strictEqual(b.getHTMLElement().getAttribute('draggable'), 'true'); + assert.strictEqual(b.getHTMLElement().getAttribute('tabindex'), '0'); }); - test("Builder.addClass() and Co", function () { + test('Builder.addClass() and Co', function () { var b = Build.withElementById(fixtureId); b.div(); - assert(!b.hasClass("foobar")); + assert(!b.hasClass('foobar')); assert(!b.getHTMLElement().className); - b.addClass("foobar"); + b.addClass('foobar'); assert(b.getComputedStyle()); - assert(b.hasClass("foobar")); - assert.strictEqual(b.getHTMLElement().className, "foobar"); - b.removeClass("foobar"); - assert(!b.hasClass("foobar")); + assert(b.hasClass('foobar')); + assert.strictEqual(b.getHTMLElement().className, 'foobar'); + b.removeClass('foobar'); + assert(!b.hasClass('foobar')); assert(!b.getHTMLElement().className); - assert(!b.hasClass("foobar")); - b.attr({'class' : "foobar"}); - assert(b.hasClass("foobar")); - assert.strictEqual(b.getHTMLElement().className, "foobar"); - b.removeClass("foobar"); - assert(!b.hasClass("foobar")); + assert(!b.hasClass('foobar')); + b.attr({ 'class': 'foobar' }); + assert(b.hasClass('foobar')); + assert.strictEqual(b.getHTMLElement().className, 'foobar'); + b.removeClass('foobar'); + assert(!b.hasClass('foobar')); assert(!b.getHTMLElement().className); - b.addClass("foobar").addClass("barfoo").addClass("foobar"); - assert(b.hasClass("barfoo")); - assert(b.hasClass("foobar")); - b.removeClass("foobar").removeClass("barfoo"); - assert(!b.hasClass("barfoo")); - assert(!b.hasClass("foobar")); + b.addClass('foobar').addClass('barfoo').addClass('foobar'); + assert(b.hasClass('barfoo')); + assert(b.hasClass('foobar')); + b.removeClass('foobar').removeClass('barfoo'); + assert(!b.hasClass('barfoo')); + assert(!b.hasClass('foobar')); assert(!b.getHTMLElement().className); - b.addClass("foobar"); - b.swapClass("foobar", "barfoo"); - assert(b.hasClass("barfoo")); - b.swapClass("foobar", "barfoo"); - assert(b.hasClass("foobar")); + b.addClass('foobar'); + b.swapClass('foobar', 'barfoo'); + assert(b.hasClass('barfoo')); + b.swapClass('foobar', 'barfoo'); + assert(b.hasClass('foobar')); - b.toggleClass("foobar"); - assert(!b.hasClass("foobar")); + b.toggleClass('foobar'); + assert(!b.hasClass('foobar')); - b.toggleClass("barfoo"); - assert(b.hasClass("barfoo")); + b.toggleClass('barfoo'); + assert(b.hasClass('barfoo')); - b.setClass("helloworld"); - assert(!b.hasClass("barfoo")); - assert(b.hasClass("helloworld")); - b.setClass(""); - assert(!b.hasClass("helloworld")); + b.setClass('helloworld'); + assert(!b.hasClass('barfoo')); + assert(b.hasClass('helloworld')); + b.setClass(''); + assert(!b.hasClass('helloworld')); }); - test("Builder.color() and .background()", function () { + test('Builder.color() and .background()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.color("red").background("blue"); + b.color('red').background('blue'); - assert.strictEqual(b.style("color"), "red"); - assert.strictEqual(b.style("background-color"), "blue"); + assert.strictEqual(b.style('color'), 'red'); + assert.strictEqual(b.style('background-color'), 'blue'); assert(b.getComputedStyle()); }); - test("Builder.padding() and .margin()", function () { + test('Builder.padding() and .margin()', function () { var b = Build.withElementById(fixtureId); b.div(); b.padding(4, 3, 2, 1).margin(1, 2, 3, 4); - assert.strictEqual(b.style("padding-top"), "4px"); - assert.strictEqual(b.style("padding-right"), "3px"); - assert.strictEqual(b.style("padding-bottom"), "2px"); - assert.strictEqual(b.style("padding-left"), "1px"); + assert.strictEqual(b.style('padding-top'), '4px'); + assert.strictEqual(b.style('padding-right'), '3px'); + assert.strictEqual(b.style('padding-bottom'), '2px'); + assert.strictEqual(b.style('padding-left'), '1px'); - assert.strictEqual(b.style("margin-top"), "1px"); - assert.strictEqual(b.style("margin-right"), "2px"); - assert.strictEqual(b.style("margin-bottom"), "3px"); - assert.strictEqual(b.style("margin-left"), "4px"); + assert.strictEqual(b.style('margin-top'), '1px'); + assert.strictEqual(b.style('margin-right'), '2px'); + assert.strictEqual(b.style('margin-bottom'), '3px'); + assert.strictEqual(b.style('margin-left'), '4px'); assert(b.getComputedStyle()); }); - test("Builder.position()", function () { + test('Builder.position()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.position(100, 200, 300, 400, "relative"); + b.position(100, 200, 300, 400, 'relative'); - assert.strictEqual(b.style("top"), "100px"); - assert.strictEqual(b.style("right"), "200px"); - assert.strictEqual(b.style("bottom"), "300px"); - assert.strictEqual(b.style("left"), "400px"); - assert.strictEqual(b.style("position"), "relative"); + assert.strictEqual(b.style('top'), '100px'); + assert.strictEqual(b.style('right'), '200px'); + assert.strictEqual(b.style('bottom'), '300px'); + assert.strictEqual(b.style('left'), '400px'); + assert.strictEqual(b.style('position'), 'relative'); }); - test("Builder.size(), .minSize() and .maxSize()", function () { + test('Builder.size(), .minSize() and .maxSize()', function () { var b = Build.withElementById(fixtureId); b.div(); b.size(100, 200); - assert.strictEqual(b.style("width"), "100px"); - assert.strictEqual(b.style("height"), "200px"); + assert.strictEqual(b.style('width'), '100px'); + assert.strictEqual(b.style('height'), '200px'); b.minSize(300, 400); b.maxSize(500, 600); - assert.strictEqual(b.style("minWidth"), "300px"); - assert.strictEqual(b.style("minHeight"), "400px"); - assert.strictEqual(b.style("maxWidth"), "500px"); - assert.strictEqual(b.style("maxHeight"), "600px"); + assert.strictEqual(b.style('minWidth'), '300px'); + assert.strictEqual(b.style('minHeight'), '400px'); + assert.strictEqual(b.style('maxWidth'), '500px'); + assert.strictEqual(b.style('maxHeight'), '600px'); }); - test("Builder.float() and .clear()", function () { + test('Builder.float() and .clear()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.float("left"); - b.clear("right"); + b.float('left'); + b.clear('right'); - assert.strictEqual(b.style("float"), "left"); - assert.strictEqual(b.style("clear"), "right"); + assert.strictEqual(b.style('float'), 'left'); + assert.strictEqual(b.style('clear'), 'right'); }); - test("Builder.normal(), .italic(), .bold() and underline()", function () { + test('Builder.normal(), .italic(), .bold() and underline()', function () { var b = Build.withElementById(fixtureId); b.div(); b.italic().underline().bold(); - assert(b.style("font-weight") === "bold" || b.style("font-weight") === "700"); // For Opera - assert.strictEqual(b.style("text-decoration"), "underline"); - assert.strictEqual(b.style("font-style"), "italic"); + assert(b.style('font-weight') === 'bold' || b.style('font-weight') === '700'); // For Opera + assert.strictEqual(b.style('text-decoration'), 'underline'); + assert.strictEqual(b.style('font-style'), 'italic'); b.normal(); - assert(b.style("font-weight") === "normal" || b.style("font-weight") === "400"); // For Opera - assert(b.style("text-decoration") === "none" || b.style("text-decoration") === "initial"); - assert.strictEqual(b.style("font-style"), "normal"); + assert(b.style('font-weight') === 'normal' || b.style('font-weight') === '400'); // For Opera + assert(b.style('text-decoration') === 'none' || b.style('text-decoration') === 'initial'); + assert.strictEqual(b.style('font-style'), 'normal'); }); - test("Builder.display() and .overflow()", function () { + test('Builder.display() and .overflow()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.display("inline"); - b.overflow("hidden"); + b.display('inline'); + b.overflow('hidden'); - assert.strictEqual(b.style("display"), "inline"); - assert.strictEqual(b.style("overflow"), "hidden"); + assert.strictEqual(b.style('display'), 'inline'); + assert.strictEqual(b.style('overflow'), 'hidden'); }); - test("Builder.show() and .hide()", function () { + test('Builder.show() and .hide()', function () { var b = Build.withElementById(fixtureId); b.div(); b.show(); - assert(!b.hasClass("hidden")); + assert(!b.hasClass('hidden')); assert(!b.isHidden()); b.toggleVisibility(); assert(!b.isHidden()); - assert(b.hasClass("builder-visible")); + assert(b.hasClass('builder-visible')); b.toggleVisibility(); b.hide(); - assert(b.hasClass("hidden")); + assert(b.hasClass('hidden')); assert(b.isHidden()); }); - test("Builder.showDelayed()", function (done) { + test('Builder.showDelayed()', function (done) { var b = Build.withElementById(fixtureId); b.div().hide(); b.showDelayed(20); - assert(b.hasClass("hidden")); + assert(b.hasClass('hidden')); - TPromise.timeout(30).then(function() { - assert(!b.hasClass("hidden")); + TPromise.timeout(30).then(function () { + assert(!b.hasClass('hidden')); done(); }); }); - test("Builder.showDelayed() but interrupted", function (done) { + test('Builder.showDelayed() but interrupted', function (done) { var b = Build.withElementById(fixtureId); b.div().hide(); b.showDelayed(20); - assert(b.hasClass("hidden")); + assert(b.hasClass('hidden')); b.hide(); // Should cancel the visibility promise - TPromise.timeout(30).then(function() { - assert(b.hasClass("hidden")); + TPromise.timeout(30).then(function () { + assert(b.hasClass('hidden')); done(); }); }); - test("Builder.border(), .borderTop(), .borderBottom(), .borderLeft(), .borderRight()", function () { + test('Builder.border(), .borderTop(), .borderBottom(), .borderLeft(), .borderRight()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.border("1px solid red"); + b.border('1px solid red'); - assert.strictEqual(b.style("border-width"), "1px"); - assert.strictEqual(b.style("border-color"), "red"); - assert.strictEqual(b.style("border-style"), "solid"); + assert.strictEqual(b.style('border-width'), '1px'); + assert.strictEqual(b.style('border-color'), 'red'); + assert.strictEqual(b.style('border-style'), 'solid'); - b.borderTop("2px dotted yellow"); + b.borderTop('2px dotted yellow'); - assert.strictEqual(b.style("border-top-width"), "2px"); - assert.strictEqual(b.style("border-top-color"), "yellow"); - assert.strictEqual(b.style("border-top-style"), "dotted"); + assert.strictEqual(b.style('border-top-width'), '2px'); + assert.strictEqual(b.style('border-top-color'), 'yellow'); + assert.strictEqual(b.style('border-top-style'), 'dotted'); - b.borderRight("3px dashed green"); + b.borderRight('3px dashed green'); - assert.strictEqual(b.style("border-right-width"), "3px"); - assert.strictEqual(b.style("border-right-color"), "green"); - assert.strictEqual(b.style("border-right-style"), "dashed"); + assert.strictEqual(b.style('border-right-width'), '3px'); + assert.strictEqual(b.style('border-right-color'), 'green'); + assert.strictEqual(b.style('border-right-style'), 'dashed'); - b.borderBottom("4px solid blue"); + b.borderBottom('4px solid blue'); - assert.strictEqual(b.style("border-bottom-width"), "4px"); - assert.strictEqual(b.style("border-bottom-color"), "blue"); - assert.strictEqual(b.style("border-bottom-style"), "solid"); + assert.strictEqual(b.style('border-bottom-width'), '4px'); + assert.strictEqual(b.style('border-bottom-color'), 'blue'); + assert.strictEqual(b.style('border-bottom-style'), 'solid'); - b.borderLeft("5px dashed white"); + b.borderLeft('5px dashed white'); - assert.strictEqual(b.style("border-left-width"), "5px"); - assert.strictEqual(b.style("border-left-color"), "white"); - assert.strictEqual(b.style("border-left-style"), "dashed"); + assert.strictEqual(b.style('border-left-width'), '5px'); + assert.strictEqual(b.style('border-left-color'), 'white'); + assert.strictEqual(b.style('border-left-style'), 'dashed'); }); - test("Builder.textAlign() and .verticalAlign()", function () { + test('Builder.textAlign() and .verticalAlign()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.textAlign("center"); - b.verticalAlign("top"); + b.textAlign('center'); + b.verticalAlign('top'); - assert.strictEqual(b.style("textAlign"), "center"); - assert.strictEqual(b.style("verticalAlign"), "top"); + assert.strictEqual(b.style('textAlign'), 'center'); + assert.strictEqual(b.style('verticalAlign'), 'top'); }); - test("Builder.innerHtml()", function () { + test('Builder.innerHtml()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.innerHtml("Foo Bar"); + b.innerHtml('Foo Bar'); - assert.strictEqual(b.getHTMLElement().innerHTML, "Foo Bar"); + assert.strictEqual(b.getHTMLElement().innerHTML, 'Foo Bar'); }); - test("Builder.safeInnerHtml()", function () { + test('Builder.safeInnerHtml()', function () { var b = Build.withElementById(fixtureId); b.div(); - b.safeInnerHtml("Foo Bar"); + b.safeInnerHtml('Foo Bar'); - assert.strictEqual(b.getHTMLElement().innerHTML, "<b>Foo Bar</b>"); + assert.strictEqual(b.getHTMLElement().innerHTML, '<b>Foo Bar</b>'); - b.safeInnerHtml("Foo Bar"); + b.safeInnerHtml('Foo Bar'); - assert.strictEqual(b.getHTMLElement().innerHTML, "Foo Bar"); + assert.strictEqual(b.getHTMLElement().innerHTML, 'Foo Bar'); }); - test("Builder.parent(), .children(), .removeChild() and isEmpty()", function () { + test('Builder.parent(), .children(), .removeChild() and isEmpty()', function () { var b = Build.withElementById(fixtureId); b.empty(); @@ -908,7 +908,7 @@ suite("Builder", () => { assert(b.children().length === 0); var divB; - b.div(function(div) { + b.div(function (div) { divB = div.clone(); div.span(); }); @@ -923,7 +923,7 @@ suite("Builder", () => { assert.equal(b.children().length, 1); }); - test("Build Client Area", function() { + test('Build Client Area', function () { // Global var dimensions = $(document.body).getClientArea(); @@ -937,24 +937,24 @@ suite("Builder", () => { // assert(dimensions.height >= 0); }); - // test("Builder.select() and .matches()", function () { + // test('Builder.select() and .matches()', function () { // var b = Build.withElementById(fixtureId); - // assert(b.matches("#" + fixtureId)); + // assert(b.matches('#' + fixtureId)); - // var divs = withElementsBySelector("div"); + // var divs = withElementsBySelector('div'); // for (var i = 0; i < divs.length; i++) { - // assert (divs.item(i).matches("div")); + // assert (divs.item(i).matches('div')); // } - // assert(b.select("div").length === 0); + // assert(b.select('div').length === 0); // b.clone().div(); - // assert(b.select("div").length === 1); + // assert(b.select('div').length === 1); // }); - test("Builder.select() and .matches()", function () { + test('Builder.select() and .matches()', function () { var b = Build.withElementById(fixtureId); assert(b.getPosition()); @@ -964,15 +964,15 @@ suite("Builder", () => { assert(b.getContentSize()); }); - test("Builder.preventDefault()", function () { + test('Builder.preventDefault()', function () { var b = Build.withElementById(fixtureId); - b.element("input", { - type: "button" + b.element('input', { + type: 'button' }); b.preventDefault(DomUtils.EventType.CLICK, true); - b.once(DomUtils.EventType.CLICK, function(e) { + b.once(DomUtils.EventType.CLICK, function (e) { if (e.defaultPrevented) { assert.strictEqual(e.defaultPrevented, true); } else if (e.cancelBubble) { @@ -983,15 +983,15 @@ suite("Builder", () => { b.domClick(); }); - test("Builder.once()", function () { + test('Builder.once()', function () { var b = Build.withElementById(fixtureId); - b.element("input", { - type: "button" + b.element('input', { + type: 'button' }); var counter = 0; - b.once(DomUtils.EventType.CLICK, function(e) { - counter ++; + b.once(DomUtils.EventType.CLICK, function (e) { + counter++; assert(counter <= 1); }); @@ -999,15 +999,15 @@ suite("Builder", () => { b.domClick(); }); - test("Builder.once() with capture", function () { + test('Builder.once() with capture', function () { var b = Build.withElementById(fixtureId); - b.element("input", { - type: "button" + b.element('input', { + type: 'button' }); var counter = 0; - b.once(DomUtils.EventType.CLICK, function(e) { - counter ++; + b.once(DomUtils.EventType.CLICK, function (e) { + counter++; assert(counter <= 1); }, null, true); @@ -1015,15 +1015,15 @@ suite("Builder", () => { b.domClick(); }); - test("Builder.on() and .off()", function () { + test('Builder.on() and .off()', function () { var b = Build.withElementById(fixtureId); - b.element("input", { - type: "button" + b.element('input', { + type: 'button' }); var listeners = []; var counter = 0; - b.on(DomUtils.EventType.CLICK, function(e) { + b.on(DomUtils.EventType.CLICK, function (e) { counter++; }, listeners); @@ -1039,15 +1039,15 @@ suite("Builder", () => { assert.equal(counter, 2); }); - test("Builder.on() and .off() with capture", function () { + test('Builder.on() and .off() with capture', function () { var b = Build.withElementById(fixtureId); - b.element("input", { - type: "button" + b.element('input', { + type: 'button' }); var listeners = []; var counter = 0; - b.on(DomUtils.EventType.CLICK, function(e) { + b.on(DomUtils.EventType.CLICK, function (e) { counter++; }, listeners, true); @@ -1066,118 +1066,118 @@ suite("Builder", () => { assert(counter === 4); }); - test("Builder.empty()", function () { + test('Builder.empty()', function () { var inputs = []; var bindings = []; var b = Build.withElementById(fixtureId); var counter1 = 0; - var counter2= 0; + var counter2 = 0; var counter3 = 0; var counter4 = 0; var counter5 = 0; var counter6 = 0; var counter7 = 0; - b.div(function(div) { - div.bind("Foo Bar"); - div.setProperty("Foo", "Bar"); + b.div(function (div) { + div.bind('Foo Bar'); + div.setProperty('Foo', 'Bar'); bindings.push(div.clone()); - div.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter1 ++; + div.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter1++; assert(counter1 <= 1); }); inputs.push(div.clone()); - div.p(function(p) { - p.bind("Foo Bar"); - p.setProperty("Foo", "Bar"); + div.p(function (p) { + p.bind('Foo Bar'); + p.setProperty('Foo', 'Bar'); bindings.push(p.clone()); - p.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { + p.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { counter2++; assert(counter2 <= 1); }); inputs.push(p.clone()); - p.ul(function(ul) { - ul.bind("Foo Bar"); - ul.setProperty("Foo", "Bar"); + p.ul(function (ul) { + ul.bind('Foo Bar'); + ul.setProperty('Foo', 'Bar'); bindings.push(ul.clone()); - ul.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter3 ++; + ul.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter3++; assert(counter3 <= 1); }); inputs.push(ul.clone()); - ul.li(function(li) { - li.bind("Foo Bar"); - li.setProperty("Foo", "Bar"); + ul.li(function (li) { + li.bind('Foo Bar'); + li.setProperty('Foo', 'Bar'); bindings.push(li.clone()); - li.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter4 ++; + li.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter4++; assert(counter4 <= 1); }); inputs.push(li.clone()); li.span({ - id: "builderspan", - innerHtml: "Foo Bar" - }, function(span) { - span.bind("Foo Bar"); - span.setProperty("Foo", "Bar"); + id: 'builderspan', + innerHtml: 'Foo Bar' + }, function (span) { + span.bind('Foo Bar'); + span.setProperty('Foo', 'Bar'); bindings.push(span.clone()); - span.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter5 ++; + span.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter5++; assert(counter5 <= 1); }); inputs.push(span.clone()); }); li.img({ - id: "builderimg", - src: "#" - }, function(img) { - img.bind("Foo Bar"); - img.setProperty("Foo", "Bar"); + id: 'builderimg', + src: '#' + }, function (img) { + img.bind('Foo Bar'); + img.setProperty('Foo', 'Bar'); bindings.push(img.clone()); - img.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter6 ++; + img.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter6++; assert(counter6 <= 1); }); inputs.push(img.clone()); }); li.a({ - id: "builderlink", - href: "#", - innerHtml: "Link" - }, function(a) { - a.bind("Foo Bar"); - a.setProperty("Foo", "Bar"); + id: 'builderlink', + href: '#', + innerHtml: 'Link' + }, function (a) { + a.bind('Foo Bar'); + a.setProperty('Foo', 'Bar'); bindings.push(a.clone()); - a.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter7 ++; + a.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter7++; assert(counter7 <= 1); }); inputs.push(a.clone()); @@ -1187,25 +1187,25 @@ suite("Builder", () => { }); }); - inputs.forEach(function(input) { + inputs.forEach(function (input) { input.domClick(); }); for (var i = 0; i < bindings.length; i++) { assert(bindings[i].getBinding()); - assert(bindings[i].getProperty("Foo")); + assert(bindings[i].getProperty('Foo')); } Build.withElementById(fixtureId).empty(); - assert(Build.withElementById(fixtureId).select("*").length === 0); + assert(Build.withElementById(fixtureId).select('*').length === 0); - inputs.forEach(function(input) { + inputs.forEach(function (input) { input.domClick(); }); for (i = 0; i < bindings.length; i++) { assert(!bindings[i].getBinding()); - assert(!bindings[i].getProperty("Foo")); + assert(!bindings[i].getProperty('Foo')); } assert.equal(counter1, 1); @@ -1217,32 +1217,32 @@ suite("Builder", () => { assert.equal(counter7, 1); }); - test("Builder.empty() cleans all listeners", function () { + test('Builder.empty() cleans all listeners', function () { var b = Build.withElementById(fixtureId); var unbindCounter = 0; var old = DomUtils.addDisposableListener; try { - DomUtils.addDisposableListener = function(node, type, handler) { - var unbind:IDisposable = old.call(null, node, type, handler); + DomUtils.addDisposableListener = function (node, type, handler) { + var unbind: IDisposable = old.call(null, node, type, handler); return { - dispose: function() { + dispose: function () { unbindCounter++; unbind.dispose(); } }; }; - b.div(function(div) { - div.p(function(p) { - p.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function(e) {}); + b.div(function (div) { + div.p(function (p) { + p.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function (e) { }); - p.img().on([DomUtils.EventType.KEY_PRESS, DomUtils.EventType.MOUSE_OUT], function(e) {}, null, true); // useCapture + p.img().on([DomUtils.EventType.KEY_PRESS, DomUtils.EventType.MOUSE_OUT], function (e) { }, null, true); // useCapture - p.a(function(a) { - a.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function(e) {}); - }).on([DomUtils.EventType.SELECT, DomUtils.EventType.BLUR], function(e) {}); + p.a(function (a) { + a.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function (e) { }); + }).on([DomUtils.EventType.SELECT, DomUtils.EventType.BLUR], function (e) { }); }); }); @@ -1253,118 +1253,118 @@ suite("Builder", () => { } }); - test("Builder.destroy()", function () { + test('Builder.destroy()', function () { var inputs = []; var bindings = []; var b = Build.withElementById(fixtureId); var counter1 = 0; - var counter2= 0; + var counter2 = 0; var counter3 = 0; var counter4 = 0; var counter5 = 0; var counter6 = 0; var counter7 = 0; - b.div(function(div) { - div.bind("Foo Bar"); - div.setProperty("Foo", "Bar"); + b.div(function (div) { + div.bind('Foo Bar'); + div.setProperty('Foo', 'Bar'); bindings.push(div.clone()); - div.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter1 ++; + div.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter1++; assert(counter1 <= 1); }, null, true); // useCapture inputs.push(div.clone()); - div.p(function(p) { - p.bind("Foo Bar"); - p.setProperty("Foo", "Bar"); + div.p(function (p) { + p.bind('Foo Bar'); + p.setProperty('Foo', 'Bar'); bindings.push(p.clone()); - p.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { + p.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { counter2++; assert(counter2 <= 1); }); inputs.push(p.clone()); - p.ul(function(ul) { - ul.bind("Foo Bar"); - ul.setProperty("Foo", "Bar"); + p.ul(function (ul) { + ul.bind('Foo Bar'); + ul.setProperty('Foo', 'Bar'); bindings.push(ul.clone()); - ul.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter3 ++; + ul.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter3++; assert(counter3 <= 1); }); inputs.push(ul.clone()); - ul.li(function(li) { - li.bind("Foo Bar"); - li.setProperty("Foo", "Bar"); + ul.li(function (li) { + li.bind('Foo Bar'); + li.setProperty('Foo', 'Bar'); bindings.push(li.clone()); - li.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter4 ++; + li.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter4++; assert(counter4 <= 1); }); inputs.push(li.clone()); li.span({ - id: "builderspan", - innerHtml: "Foo Bar" - }, function(span) { - span.bind("Foo Bar"); - span.setProperty("Foo", "Bar"); + id: 'builderspan', + innerHtml: 'Foo Bar' + }, function (span) { + span.bind('Foo Bar'); + span.setProperty('Foo', 'Bar'); bindings.push(span.clone()); - span.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter5 ++; + span.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter5++; assert(counter5 <= 1); }); inputs.push(span.clone()); }); li.img({ - id: "builderimg", - src: "#" - }, function(img) { - img.bind("Foo Bar"); - img.setProperty("Foo", "Bar"); + id: 'builderimg', + src: '#' + }, function (img) { + img.bind('Foo Bar'); + img.setProperty('Foo', 'Bar'); bindings.push(img.clone()); - img.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter6 ++; + img.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter6++; assert(counter6 <= 1); }); inputs.push(img.clone()); }); li.a({ - id: "builderlink", - href: "#", - innerHtml: "Link" - }, function(a) { - a.bind("Foo Bar"); - a.setProperty("Foo", "Bar"); + id: 'builderlink', + href: '#', + innerHtml: 'Link' + }, function (a) { + a.bind('Foo Bar'); + a.setProperty('Foo', 'Bar'); bindings.push(a.clone()); - a.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { - counter7 ++; + a.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { + counter7++; assert(counter7 <= 1); }); inputs.push(a.clone()); @@ -1374,25 +1374,25 @@ suite("Builder", () => { }); }); - inputs.forEach(function(input) { + inputs.forEach(function (input) { input.domClick(); }); for (var i = 0; i < bindings.length; i++) { assert(bindings[i].getBinding()); - assert(bindings[i].getProperty("Foo")); + assert(bindings[i].getProperty('Foo')); } - Build.withElementById(fixtureId).select("div").destroy(); - assert(Build.withElementById(fixtureId).select("*").length === 0); + Build.withElementById(fixtureId).select('div').destroy(); + assert(Build.withElementById(fixtureId).select('*').length === 0); - inputs.forEach(function(input) { + inputs.forEach(function (input) { input.domClick(); }); for (i = 0; i < bindings.length; i++) { assert(!bindings[i].getBinding()); - assert(!bindings[i].getProperty("Foo")); + assert(!bindings[i].getProperty('Foo')); } assert.equal(counter1, 1); @@ -1404,36 +1404,36 @@ suite("Builder", () => { assert.equal(counter7, 1); }); - test("Builder.destroy() cleans all listeners", function () { + test('Builder.destroy() cleans all listeners', function () { var b = Build.withElementById(fixtureId); var unbindCounter = 0; var old = DomUtils.addDisposableListener; try { - DomUtils.addDisposableListener = function(node, type, handler) { - var unbind:IDisposable = old.call(null, node, type, handler); + DomUtils.addDisposableListener = function (node, type, handler) { + var unbind: IDisposable = old.call(null, node, type, handler); return { - dispose: function() { + dispose: function () { unbindCounter++; unbind.dispose(); } }; }; - b.div(function(div) { - div.p(function(p) { - p.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function(e) {}); + b.div(function (div) { + div.p(function (p) { + p.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function (e) { }); - p.img().on([DomUtils.EventType.KEY_PRESS, DomUtils.EventType.MOUSE_OUT], function(e) {}); + p.img().on([DomUtils.EventType.KEY_PRESS, DomUtils.EventType.MOUSE_OUT], function (e) { }); - p.a(function(a) { - a.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function(e) {}); - }).on([DomUtils.EventType.SELECT, DomUtils.EventType.BLUR], function(e) {}); + p.a(function (a) { + a.span().on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function (e) { }); + }).on([DomUtils.EventType.SELECT, DomUtils.EventType.BLUR], function (e) { }); }); }) - .on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function(e) {}) - .on([DomUtils.EventType.BLUR, DomUtils.EventType.FOCUS], function(e) {}, null, true); //useCapture + .on([DomUtils.EventType.CLICK, DomUtils.EventType.KEY_DOWN], function (e) { }) + .on([DomUtils.EventType.BLUR, DomUtils.EventType.FOCUS], function (e) { }, null, true); //useCapture b.destroy(); assert.strictEqual(unbindCounter, 16); @@ -1442,15 +1442,15 @@ suite("Builder", () => { } }); - test("Builder.empty() MultiBuilder", function () { + test('Builder.empty() MultiBuilder', function () { var b = Build.withElementById(fixtureId); var inputs = []; var firstCounter = 0; - b.div(function(div) { - div.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { + b.div(function (div) { + div.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { firstCounter++; }); @@ -1458,10 +1458,10 @@ suite("Builder", () => { }); var secondCounter = 0; - b.div(function(div) { - div.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { + b.div(function (div) { + div.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { secondCounter++; }); @@ -1469,21 +1469,21 @@ suite("Builder", () => { }); var thirdCounter = 0; - b.div(function(div) { - div.element("input", { - type: "button" - }).on(DomUtils.EventType.CLICK, function(e) { + b.div(function (div) { + div.element('input', { + type: 'button' + }).on(DomUtils.EventType.CLICK, function (e) { thirdCounter++; }); inputs.push(div.clone()); }); - Build.withElementById(fixtureId).select("div > input").domClick(); + Build.withElementById(fixtureId).select('div > input').domClick(); - Build.withElementById(fixtureId).select("div").empty(); + Build.withElementById(fixtureId).select('div').empty(); - inputs.forEach(function(input) { + inputs.forEach(function (input) { input.domClick(); }); @@ -1492,10 +1492,10 @@ suite("Builder", () => { assert.equal(thirdCounter, 1); }); - test("Builder .domFocus(), .domBlur(), .hasFocus()", function () { + test('Builder .domFocus(), .domBlur(), .hasFocus()', function () { var b = Build.withElementById(fixtureId); - b.element("input", { type: "text"}); + b.element('input', { type: 'text' }); assert(!b.hasFocus()); b.domFocus().domSelect(); assert(b.hasFocus()); @@ -1503,43 +1503,43 @@ suite("Builder", () => { assert(!b.hasFocus()); }); - test("Builder misc", function () { + test('Builder misc', function () { var b = Build.withElementById(fixtureId); b.div(); - b.on([DomUtils.EventType.CLICK, DomUtils.EventType.MOUSE_DOWN, DomUtils.EventType.MOUSE_UP], function(e, b) { + b.on([DomUtils.EventType.CLICK, DomUtils.EventType.MOUSE_DOWN, DomUtils.EventType.MOUSE_UP], function (e, b) { }); b.off([DomUtils.EventType.CLICK, DomUtils.EventType.MOUSE_DOWN, DomUtils.EventType.MOUSE_UP]); - b.once([DomUtils.EventType.CLICK, DomUtils.EventType.MOUSE_DOWN, DomUtils.EventType.MOUSE_UP], function(e, b) { + b.once([DomUtils.EventType.CLICK, DomUtils.EventType.MOUSE_DOWN, DomUtils.EventType.MOUSE_UP], function (e, b) { }); b.off([DomUtils.EventType.CLICK, DomUtils.EventType.MOUSE_DOWN, DomUtils.EventType.MOUSE_UP]); b.preventDefault(DomUtils.EventType.CLICK, true); - b.bind("foo"); - assert.strictEqual(b.getBinding(), "foo"); + b.bind('foo'); + assert.strictEqual(b.getBinding(), 'foo'); b.unbind(); assert(!b.getBinding()); - b.setProperty("foo", "bar"); - assert.strictEqual(b.getProperty("foo"), "bar"); - b.removeProperty("foo"); - assert(!b.getProperty("foo")); + b.setProperty('foo', 'bar'); + assert.strictEqual(b.getProperty('foo'), 'bar'); + b.removeProperty('foo'); + assert(!b.getProperty('foo')); }); - test("Builder.offDOM()", function () { + test('Builder.offDOM()', function () { var b = Build.withElementById(fixtureId); - b.div({ id: "1" }); + b.div({ id: '1' }); - assert(Build.withElementById("1")); + assert(Build.withElementById('1')); b.offDOM(); - assert(!Build.withElementById("1")); + assert(!Build.withElementById('1')); }); - test("$ - selector construction", function () { + test('$ - selector construction', function () { var obj = $('div'); assert(obj instanceof Builder); assert(DomUtils.isHTMLElement(obj.getHTMLElement())); @@ -1597,7 +1597,7 @@ suite("Builder", () => { assert.equal(obj.getHTMLElement().className, 'container box'); }); - test("$ - wrap elements and builders", function () { + test('$ - wrap elements and builders', function () { var obj = $('#' + fixtureId); assert(obj instanceof Builder); obj = $(obj.getHTMLElement()); @@ -1625,7 +1625,7 @@ suite("Builder", () => { }); test('$ - multiple html tags', function () { - var objs = $('HelloThere'); + var objs = $('HelloThere'); assert(objs instanceof MultiBuilder); assert.equal(objs.length, 2); @@ -1641,7 +1641,7 @@ suite("Builder", () => { }); test('$ - html format', function () { - var objs = ($)('{1}{3}', 'a1', 'Hello', 'a2', 'There'); + var objs = ($)('{1}{3}', 'a1', 'Hello', 'a2', 'There'); assert(objs instanceof MultiBuilder); assert.equal(objs.length, 2); @@ -1661,7 +1661,7 @@ suite("Builder", () => { assert.throws(function () { $(123); }); }); - test("$ - appendTo, append", function () { + test('$ - appendTo, append', function () { var peel = $('
'); var core = $('').appendTo(peel); var obj = peel.getHTMLElement(); @@ -1966,11 +1966,11 @@ suite("Builder", () => { test("XSS - safeInnerHtml()", () => { var alert = window.alert; var alertCount = 0; - window.alert = function() { + window.alert = function () { alertCount++; }; - values.forEach(function(value) { + values.forEach(function (value) { var b = Build.withElementById(fixtureId); b.empty(); b.div().safeInnerHtml(value); diff --git a/src/vs/base/test/browser/progressBar.test.ts b/src/vs/base/test/browser/progressBar.test.ts index 10aced95238..d8e09fcbfac 100644 --- a/src/vs/base/test/browser/progressBar.test.ts +++ b/src/vs/base/test/browser/progressBar.test.ts @@ -7,9 +7,8 @@ import * as assert from 'assert'; import { ProgressBar } from 'vs/base/browser/ui/progressbar/progressbar'; import { Builder } from 'vs/base/browser/builder'; -import mockBrowserService = require('vs/base/test/browser/mockBrowserService'); -suite("ProgressBar", () => { +suite('ProgressBar', () => { var fixture: HTMLElement; setup(() => { @@ -21,7 +20,7 @@ suite("ProgressBar", () => { document.body.removeChild(fixture); }); - test("Progress Bar", function() { + test('Progress Bar', function () { var b = new Builder(fixture); var bar = new ProgressBar(b); diff --git a/src/vs/base/test/browser/quickopen.test.ts b/src/vs/base/test/browser/quickopen.test.ts index b6faae2e554..e54f5164067 100644 --- a/src/vs/base/test/browser/quickopen.test.ts +++ b/src/vs/base/test/browser/quickopen.test.ts @@ -44,7 +44,7 @@ suite('QuickOpen', () => { assert.equal(true, ds.hasChildren(null, model)); assert.equal(false, ds.hasChildren(null, entry1)); - ds.getChildren(null, model).then((children:any[])=>{ + ds.getChildren(null, model).then((children: any[]) => { assert.equal(3, children.length); }); }); diff --git a/src/vs/base/test/common/actions.test.ts b/src/vs/base/test/common/actions.test.ts index d81a5d489d7..92676e49de9 100644 --- a/src/vs/base/test/common/actions.test.ts +++ b/src/vs/base/test/common/actions.test.ts @@ -9,7 +9,7 @@ import { Action, IAction, isAction } from 'vs/base/common/actions'; suite('Actions', () => { test('isAction', function() { - assert(isAction(new Action('id', 'label', 'style', true, function() { return null }))); + assert(isAction(new Action('id', 'label', 'style', true, function() { return null; }))); assert(isAction( { id: 'id', label: 'label', @@ -52,5 +52,5 @@ suite('Actions', () => { enabled: true, // run: function() { return null; } })); - }) + }); }); diff --git a/src/vs/base/test/common/arrays.test.ts b/src/vs/base/test/common/arrays.test.ts index 5aa002c5dfa..1031c680f2c 100644 --- a/src/vs/base/test/common/arrays.test.ts +++ b/src/vs/base/test/common/arrays.test.ts @@ -14,22 +14,22 @@ suite('Arrays', () => { var idx = arrays.findFirst(array, e => e >= 0); assert.equal(array[idx], 1); - var idx = arrays.findFirst(array, e => e > 1); + idx = arrays.findFirst(array, e => e > 1); assert.equal(array[idx], 4); - var idx = arrays.findFirst(array, e => e >= 8); + idx = arrays.findFirst(array, e => e >= 8); assert.equal(array[idx], 55); - var idx = arrays.findFirst(array, e => e >= 61); + idx = arrays.findFirst(array, e => e >= 61); assert.equal(array[idx], 61); - var idx = arrays.findFirst(array, e => e >= 69); + idx = arrays.findFirst(array, e => e >= 69); assert.equal(array[idx], 69); - var idx = arrays.findFirst(array, e => e >= 70); + idx = arrays.findFirst(array, e => e >= 70); assert.equal(idx, array.length); - var idx = arrays.findFirst([], e => e >= 0); + idx = arrays.findFirst([], e => e >= 0); assert.equal(array[idx], 1); }); diff --git a/src/vs/base/test/common/assert.test.ts b/src/vs/base/test/common/assert.test.ts index 682da61355f..8ccd53a455f 100644 --- a/src/vs/base/test/common/assert.test.ts +++ b/src/vs/base/test/common/assert.test.ts @@ -6,10 +6,9 @@ import * as assert from 'assert'; import { ok } from 'vs/base/common/assert'; -import arrays = require('vs/base/common/arrays'); suite('Assert', () => { - test("ok", function () { + test('ok', function () { assert.throws(function () { ok(false); }); @@ -23,13 +22,13 @@ suite('Assert', () => { }); assert.throws(function () { - ok(null, "Foo Bar"); - }, function(e) { - return e.message.indexOf("Foo Bar") >= 0; + ok(null, 'Foo Bar'); + }, function (e) { + return e.message.indexOf('Foo Bar') >= 0; }); ok(true); - ok("foo"); + ok('foo'); ok({}); ok(5); }); diff --git a/src/vs/base/test/common/async.test.ts b/src/vs/base/test/common/async.test.ts index 022afeda3b1..634b5ae9bc6 100644 --- a/src/vs/base/test/common/async.test.ts +++ b/src/vs/base/test/common/async.test.ts @@ -190,7 +190,6 @@ suite('Async', () => { }; var delayer = new Async.Delayer(0); - var promises: Promise[] = []; assert(!delayer.isTriggered()); diff --git a/src/vs/base/test/common/cancellation.test.ts b/src/vs/base/test/common/cancellation.test.ts index cdfe96e994c..007b33b83a4 100644 --- a/src/vs/base/test/common/cancellation.test.ts +++ b/src/vs/base/test/common/cancellation.test.ts @@ -21,7 +21,7 @@ suite('CancellationToken', function() { }); assert.throws(function () { - CancellationToken.Cancelled.onCancellationRequested = null + CancellationToken.Cancelled.onCancellationRequested = null; }); assert.throws(function () { @@ -29,7 +29,7 @@ suite('CancellationToken', function() { }); assert.throws(function () { - CancellationToken.None.onCancellationRequested = null + CancellationToken.None.onCancellationRequested = null; }); }); @@ -58,7 +58,7 @@ suite('CancellationToken', function() { cancelCount += 1; } - source.token.onCancellationRequested(onCancel) + source.token.onCancellationRequested(onCancel); source.cancel(); source.cancel(); diff --git a/src/vs/base/test/common/errors.test.ts b/src/vs/base/test/common/errors.test.ts index 36d610d496e..1e7f7200559 100644 --- a/src/vs/base/test/common/errors.test.ts +++ b/src/vs/base/test/common/errors.test.ts @@ -8,27 +8,27 @@ import * as assert from 'assert'; import { toErrorMessage } from 'vs/base/common/errors'; suite('Errors', () => { - test("Get Error Message", function () { - assert.strictEqual(toErrorMessage("Foo Bar"), "Foo Bar"); - assert.strictEqual(toErrorMessage(new Error("Foo Bar")), "Foo Bar"); + test('Get Error Message', function () { + assert.strictEqual(toErrorMessage('Foo Bar'), 'Foo Bar'); + assert.strictEqual(toErrorMessage(new Error('Foo Bar')), 'Foo Bar'); var error: any = new Error(); error.status = 404; - error.statusText = "Not Found"; - assert.strictEqual(toErrorMessage(error), "Not Found (HTTP 404)"); + error.statusText = 'Not Found'; + assert.strictEqual(toErrorMessage(error), 'Not Found (HTTP 404)'); error = new Error(); error.detail = {}; error.detail.exception = {}; - error.detail.exception.message = "Foo Bar"; - assert.strictEqual(toErrorMessage(error), "Foo Bar"); + error.detail.exception.message = 'Foo Bar'; + assert.strictEqual(toErrorMessage(error), 'Foo Bar'); error = new Error(); error.detail = {}; error.detail.error = {}; error.detail.error.status = 404; - error.detail.error.statusText = "Not Found"; - assert.strictEqual(toErrorMessage(error), "Not Found (HTTP 404)"); + error.detail.error.statusText = 'Not Found'; + assert.strictEqual(toErrorMessage(error), 'Not Found (HTTP 404)'); error = new Error(); error.detail = {}; @@ -37,8 +37,8 @@ suite('Errors', () => { var foo: any = {}; error.detail.error.push(foo); foo.status = 404; - foo.statusText = "Not Found"; - assert.strictEqual(toErrorMessage(error), "Not Found (HTTP 404)"); + foo.statusText = 'Not Found'; + assert.strictEqual(toErrorMessage(error), 'Not Found (HTTP 404)'); assert(toErrorMessage()); assert(toErrorMessage(null)); diff --git a/src/vs/base/test/common/glob.test.ts b/src/vs/base/test/common/glob.test.ts index 671820a5668..aac9f582ab2 100644 --- a/src/vs/base/test/common/glob.test.ts +++ b/src/vs/base/test/common/glob.test.ts @@ -8,7 +8,7 @@ import * as assert from 'assert'; import glob = require('vs/base/common/glob'); suite('Glob', () => { - test('simple', function() { + test('simple', function () { var p = 'node_modules'; assert(glob.match(p, 'node_modules')); @@ -43,7 +43,7 @@ suite('Glob', () => { assert(glob.match(p, 'C:\\DNXConsoleApp\\foo\\Program.cs')); }); - test('dot hidden', function() { + test('dot hidden', function () { var p = '.*'; assert(glob.match(p, '.git')); @@ -83,7 +83,7 @@ suite('Glob', () => { assert(!glob.match(p, 'pat.h/hidden._txt')); }); - test('file pattern', function() { + test('file pattern', function () { var p = '*.js'; assert(glob.match(p, 'foo.js')); @@ -112,7 +112,7 @@ suite('Glob', () => { assert(!glob.match(p, 'some.js/test')); }); - test('star', function() { + test('star', function () { var p = 'node*modules'; assert(glob.match(p, 'node_modules')); @@ -129,7 +129,7 @@ suite('Glob', () => { assert(!glob.match(p, '/node_modules/foo.js')); }); - test('questionmark', function() { + test('questionmark', function () { var p = 'node?modules'; assert(glob.match(p, 'node_modules')); @@ -146,7 +146,7 @@ suite('Glob', () => { assert(!glob.match(p, '/node_modules/foo.js')); }); - test('globstar', function() { + test('globstar', function () { var p = '**/*.js'; assert(glob.match(p, 'foo.js')); @@ -227,7 +227,7 @@ suite('Glob', () => { assert(!glob.match(p, 'C:\\\\some\\test\\tempting')); }); - test('brace expansion', function() { + test('brace expansion', function () { var p = '*.{html,js}'; assert(glob.match(p, 'foo.js')); @@ -319,11 +319,11 @@ suite('Glob', () => { assert(glob.match(p, 'prefix/foo.js')); }); - test('expression support (single)', function() { + test('expression support (single)', function () { var siblings = ['test.html', 'test.txt', 'test.ts', 'test.js']; // { "**/*.js": { "when": "$(basename).ts" } } - var expression:glob.IExpression = { + var expression: glob.IExpression = { '**/*.js': { when: '$(basename).ts' } @@ -354,11 +354,11 @@ suite('Glob', () => { assert(!glob.match(expression, 'test.js', siblings)); }); - test('expression support (multiple)', function() { + test('expression support (multiple)', function () { var siblings = ['test.html', 'test.txt', 'test.ts', 'test.js']; // { "**/*.js": { "when": "$(basename).ts" } } - var expression:glob.IExpression = { + var expression: glob.IExpression = { '**/*.js': { when: '$(basename).ts' }, '**/*.as': true, '**/*.foo': false, @@ -372,7 +372,7 @@ suite('Glob', () => { assert(!glob.match(expression, 'test.foo', siblings)); }); - test('brackets', function() { + test('brackets', function () { var p = 'foo.[0-9]'; assert(glob.match(p, 'foo.5')); @@ -388,7 +388,7 @@ suite('Glob', () => { assert(glob.match(p, 'foo.f')); }); - test('backslash agnostic', function() { + test('backslash agnostic', function () { var p = 'testing/this/foo.txt'; assert(glob.match(p, 'testing/this/foo.txt')); @@ -396,7 +396,7 @@ suite('Glob', () => { assert(glob.match(p, 'testing/this\\foo.txt')); }); - test('prefix agnostic', function() { + test('prefix agnostic', function () { var p = '**/*.js'; assert(glob.match(p, 'foo.js')); @@ -440,7 +440,7 @@ suite('Glob', () => { assert(glob.match(p, 'C:\\testing\\foo.js')); }); - test('cached properly', function() { + test('cached properly', function () { var p = '**/*.js'; assert(glob.match(p, 'foo.js')); @@ -500,13 +500,13 @@ suite('Glob', () => { assert(!glob.match(p, 'C:\\testing.js\\foo')); }); - test('invalid glob', function() { + test('invalid glob', function () { var p = '**/*(.js'; assert(!glob.match(p, 'foo.js')); }); - test('split glob aware', function() { + test('split glob aware', function () { assert.deepEqual(glob.splitGlobAware('foo,bar', ','), ['foo', 'bar']); assert.deepEqual(glob.splitGlobAware('foo', ','), ['foo']); assert.deepEqual(glob.splitGlobAware('{foo,bar}', ','), ['{foo,bar}']); diff --git a/src/vs/base/test/common/graph.test.ts b/src/vs/base/test/common/graph.test.ts index baef540e3c1..fd4a5981720 100644 --- a/src/vs/base/test/common/graph.test.ts +++ b/src/vs/base/test/common/graph.test.ts @@ -56,7 +56,7 @@ suite('Graph', () => { var items = ['3', '4', '5']; graph.traverse('3', true, (node) => assert.equal(node, items.shift())); - var items = ['3', '1', '2']; + items = ['3', '1', '2']; graph.traverse('3', false, (node) => assert.equal(node, items.shift())); }); @@ -69,7 +69,7 @@ suite('Graph', () => { var items = ['1', '2', '3', '4', '5']; graph.traverse('1', true, (node) => assert.equal(node, items.shift())); - var items = ['1', '2', '3', '4', '5'].reverse(); + items = ['1', '2', '3', '4', '5'].reverse(); graph.traverse('5', false, (node) => assert.equal(node, items.shift())); }); @@ -80,7 +80,7 @@ suite('Graph', () => { assert.equal(roots[0].data, '2'); graph.insertEdge('2', '1'); - var roots = graph.roots(); + roots = graph.roots(); assert.equal(roots.length, 0); }); diff --git a/src/vs/base/test/common/objects.test.ts b/src/vs/base/test/common/objects.test.ts index 595cec19ab4..1fd5d9ceb63 100644 --- a/src/vs/base/test/common/objects.test.ts +++ b/src/vs/base/test/common/objects.test.ts @@ -75,7 +75,7 @@ suite('Objects', () => { var bar:any = { bar: '456' - } + }; objects.mixin(foo, bar, false); diff --git a/src/vs/base/test/common/scorer.test.ts b/src/vs/base/test/common/scorer.test.ts index ca0e29887f1..e0cd72662c0 100644 --- a/src/vs/base/test/common/scorer.test.ts +++ b/src/vs/base/test/common/scorer.test.ts @@ -10,7 +10,7 @@ import scorer = require('vs/base/common/scorer'); suite('Scorer', () => { - test("score", function() { + test('score', function () { const target = 'HelLo-World'; const scores = []; @@ -33,7 +33,7 @@ suite('Scorer', () => { assert.deepEqual(scores, sortedScores); }); - test("cache", function() { + test('cache', function () { const cache = Object.create(null); scorer.score('target', 'query', cache); @@ -42,7 +42,7 @@ suite('Scorer', () => { assert.equal(Object.getOwnPropertyNames(cache).length, 2); }); - test("matches", function() { + test('matches', function () { assert.ok(scorer.matches('hello world', 'h')); assert.ok(!scorer.matches('hello world', 'q')); assert.ok(scorer.matches('hello world', 'hw')); diff --git a/src/vs/base/test/common/strings.test.ts b/src/vs/base/test/common/strings.test.ts index 10a8a0531ea..0d46f8d4587 100644 --- a/src/vs/base/test/common/strings.test.ts +++ b/src/vs/base/test/common/strings.test.ts @@ -8,7 +8,7 @@ import * as assert from 'assert'; import strings = require('vs/base/common/strings'); suite('Strings', () => { - test('equalsIgnoreCase', function() { + test('equalsIgnoreCase', function () { assert(strings.equalsIgnoreCase('', '')); assert(!strings.equalsIgnoreCase('', '1')); @@ -33,13 +33,13 @@ suite('Strings', () => { }); test('computeLineStarts', function () { - function assertLineStart(text: string, ...offsets: number[]):void { + function assertLineStart(text: string, ...offsets: number[]): void { var actual = strings.computeLineStarts(text); assert.equal(actual.length, offsets.length); - if(actual.length !== offsets.length) { + if (actual.length !== offsets.length) { return; } - while(offsets.length > 0) { + while (offsets.length > 0) { assert.equal(actual.pop(), offsets.pop()); } } @@ -135,7 +135,7 @@ suite('Strings', () => { assert.strictEqual(' '.trim(), ''); }); - test('localeCompare', function() { + test('localeCompare', function () { assert.strictEqual(strings.localeCompare('a', 'a'), 'a'.localeCompare('a')); assert.strictEqual(strings.localeCompare('A', 'A'), 'A'.localeCompare('A')); assert.strictEqual(strings.localeCompare('All', 'A'), 'All'.localeCompare('A')); @@ -144,10 +144,10 @@ suite('Strings', () => { assert.strictEqual(strings.localeCompare('a', 'A'), 'a'.localeCompare('A')); }); - test('appendWithLimit', function() { + test('appendWithLimit', function () { assert.strictEqual(strings.appendWithLimit('ab', 'cd', 100), 'abcd'); assert.strictEqual(strings.appendWithLimit('ab', 'cd', 2), '...cd'); - assert.strictEqual(strings.appendWithLimit('ab', 'cdefgh',4), '...efgh'); + assert.strictEqual(strings.appendWithLimit('ab', 'cdefgh', 4), '...efgh'); assert.strictEqual(strings.appendWithLimit('abcdef', 'ghijk', 7), '...efghijk'); }); }); \ No newline at end of file diff --git a/src/vs/base/test/common/types.test.ts b/src/vs/base/test/common/types.test.ts index b73699cfc86..009951d0e16 100644 --- a/src/vs/base/test/common/types.test.ts +++ b/src/vs/base/test/common/types.test.ts @@ -172,19 +172,19 @@ suite('Types', () => { }); test('validateConstraints', () => { - types.validateConstraints([1, 'test', true], [Number, String, Boolean]) - types.validateConstraints([1, 'test', true], ['number', 'string', 'boolean']) - types.validateConstraints([console.log], [Function]) - types.validateConstraints([undefined], [types.isUndefined]) - types.validateConstraints([1], [types.isNumber]) + types.validateConstraints([1, 'test', true], [Number, String, Boolean]); + types.validateConstraints([1, 'test', true], ['number', 'string', 'boolean']); + types.validateConstraints([console.log], [Function]); + types.validateConstraints([undefined], [types.isUndefined]); + types.validateConstraints([1], [types.isNumber]); - function foo() {} + function foo() { } types.validateConstraints([new foo()], [foo]); - function isFoo(f) {} + function isFoo(f) { } assert.throws(() => types.validateConstraints([new foo()], [isFoo])); - function isFoo2(f) { return true} + function isFoo2(f) { return true; }; types.validateConstraints([new foo()], [isFoo2]); assert.throws(() => types.validateConstraints([1, true], [types.isNumber, types.isString])); @@ -193,12 +193,12 @@ suite('Types', () => { }); test('create', () => { - var zeroConstructor = function() { /**/ }; + var zeroConstructor = function () { /**/ }; assert(types.create(zeroConstructor) instanceof zeroConstructor); assert(types.isObject(types.create(zeroConstructor))); - var manyArgConstructor = function(foo, bar) { + var manyArgConstructor = function (foo, bar) { this.foo = foo; this.bar = bar; }; diff --git a/src/vs/base/test/node/aiAdapter/aiAdapter.test.ts b/src/vs/base/test/node/aiAdapter/aiAdapter.test.ts index 7ce9093479b..ed35c5229ee 100644 --- a/src/vs/base/test/node/aiAdapter/aiAdapter.test.ts +++ b/src/vs/base/test/node/aiAdapter/aiAdapter.test.ts @@ -9,17 +9,17 @@ import { AIAdapter } from 'vs/base/node/aiAdapter'; interface IAppInsightsEvent { eventName: string; - properties?: {string?: string;}; - measurements?: {string?: number;} + properties?: { string?: string; }; + measurements?: { string?: number; }; } class AppInsightsMock { - public events: IAppInsightsEvent[]=[]; + public events: IAppInsightsEvent[] = []; public IsTrackingPageView: boolean = false; - public exceptions: any[] =[]; + public exceptions: any[] = []; - public trackEvent(eventName: string, properties?: {string?: string;}, measurements?: {string?: number;}): void { + public trackEvent(eventName: string, properties?: { string?: string; }, measurements?: { string?: number; }): void { this.events.push({ eventName: eventName, properties: properties, @@ -65,14 +65,14 @@ suite('AIAdapter', () => { test('property limits', () => { var reallyLongPropertyName = 'abcdefghijklmnopqrstuvwxyz'; - for (var i =0; i <6; i++) { - reallyLongPropertyName +='abcdefghijklmnopqrstuvwxyz'; + for (var i = 0; i < 6; i++) { + reallyLongPropertyName += 'abcdefghijklmnopqrstuvwxyz'; } assert(reallyLongPropertyName.length > 150); var reallyLongPropertyValue = 'abcdefghijklmnopqrstuvwxyz012345678901234567890123'; - for (var i =0; i <21; i++) { - reallyLongPropertyValue +='abcdefghijklmnopqrstuvwxyz012345678901234567890123'; + for (var i = 0; i < 21; i++) { + reallyLongPropertyValue += 'abcdefghijklmnopqrstuvwxyz012345678901234567890123'; } assert(reallyLongPropertyValue.length > 1024); @@ -83,15 +83,15 @@ suite('AIAdapter', () => { assert.equal(appInsightsMock.events.length, 1); - for (var prop in appInsightsMock.events[0].properties){ + for (var prop in appInsightsMock.events[0].properties) { assert(prop.length < 150); - assert(appInsightsMock.events[0].properties[prop].length <1024); + assert(appInsightsMock.events[0].properties[prop].length < 1024); } }); test('Different data types', () => { var date = new Date(); - adapter.log('testEvent', { favoriteDate: date, likeRed: false, likeBlue: true, favoriteNumber:1, favoriteColor: 'blue', favoriteCars: ['bmw', 'audi', 'ford']}); + adapter.log('testEvent', { favoriteDate: date, likeRed: false, likeBlue: true, favoriteNumber: 1, favoriteColor: 'blue', favoriteCars: ['bmw', 'audi', 'ford'] }); assert.equal(appInsightsMock.events.length, 1); assert.equal(appInsightsMock.events[0].eventName, `${prefix}/testEvent`); @@ -105,7 +105,7 @@ suite('AIAdapter', () => { test('Nested data', () => { adapter.log('testEvent', { - window : { + window: { title: 'some title', measurements: { width: 100, @@ -118,7 +118,7 @@ suite('AIAdapter', () => { testProperty: 'test', } }, - testMeasurement:1 + testMeasurement: 1 } }); @@ -129,7 +129,7 @@ suite('AIAdapter', () => { assert.equal(appInsightsMock.events[0].measurements['window.measurements.width'], 100); assert.equal(appInsightsMock.events[0].measurements['window.measurements.height'], 200); - assert.equal(appInsightsMock.events[0].properties['nestedObj.nestedObj2.nestedObj3'], JSON.stringify({"testProperty":"test"})); - assert.equal(appInsightsMock.events[0].measurements['nestedObj.testMeasurement'],1); + assert.equal(appInsightsMock.events[0].properties['nestedObj.nestedObj2.nestedObj3'], JSON.stringify({ 'testProperty': 'test' })); + assert.equal(appInsightsMock.events[0].measurements['nestedObj.testMeasurement'], 1); }); }); \ No newline at end of file diff --git a/src/vs/base/test/node/decoder.test.ts b/src/vs/base/test/node/decoder.test.ts index c37ddc957c3..d211ee7d3d1 100644 --- a/src/vs/base/test/node/decoder.test.ts +++ b/src/vs/base/test/node/decoder.test.ts @@ -10,7 +10,7 @@ import decoder = require('vs/base/node/decoder'); suite('Decoder', () => { - test('decoding', function() { + test('decoding', function () { var lineDecoder = new decoder.LineDecoder(); var res = lineDecoder.write(new Buffer('hello')); assert.equal(res.length, 0); diff --git a/src/vs/base/test/node/encoding/encoding.test.ts b/src/vs/base/test/node/encoding/encoding.test.ts index d3f8f4ee251..c020a268dc3 100644 --- a/src/vs/base/test/node/encoding/encoding.test.ts +++ b/src/vs/base/test/node/encoding/encoding.test.ts @@ -6,12 +6,11 @@ 'use strict'; import assert = require('assert'); -import path = require('path'); import encoding = require('vs/base/node/encoding'); suite('Encoding', () => { - test('detectBOM UTF-8', function(done: () => void) { + test('detectBOM UTF-8', function (done: () => void) { var file = require.toUrl('./fixtures/some_utf8.css'); encoding.detectEncodingByBOM(file, (error: Error, encoding: string) => { @@ -22,7 +21,7 @@ suite('Encoding', () => { }); }); - test('detectBOM UTF-16 LE', function(done: () => void) { + test('detectBOM UTF-16 LE', function (done: () => void) { var file = require.toUrl('./fixtures/some_utf16le.css'); encoding.detectEncodingByBOM(file, (error: Error, encoding: string) => { @@ -33,7 +32,7 @@ suite('Encoding', () => { }); }); - test('detectBOM UTF-16 BE', function(done: () => void) { + test('detectBOM UTF-16 BE', function (done: () => void) { var file = require.toUrl('./fixtures/some_utf16be.css'); encoding.detectEncodingByBOM(file, (error: Error, encoding: string) => { @@ -44,7 +43,7 @@ suite('Encoding', () => { }); }); - test('detectBOM ANSI', function(done: () => void) { + test('detectBOM ANSI', function (done: () => void) { var file = require.toUrl('./fixtures/some_ansi.css'); encoding.detectEncodingByBOM(file, (error: Error, encoding: string) => { @@ -55,7 +54,7 @@ suite('Encoding', () => { }); }); - test('detectBOM ANSI', function(done: () => void) { + test('detectBOM ANSI', function (done: () => void) { var file = require.toUrl('./fixtures/empty.txt'); encoding.detectEncodingByBOM(file, (error: Error, encoding: string) => { diff --git a/src/vs/base/test/node/env.test.ts b/src/vs/base/test/node/env.test.ts index 1fb54f5b00e..a9b18bc7649 100644 --- a/src/vs/base/test/node/env.test.ts +++ b/src/vs/base/test/node/env.test.ts @@ -9,33 +9,33 @@ import * as assert from 'assert'; import env = require('vs/base/node/env'); suite('Env', () => { - test('Parses multi-line environment variables at end of env', function(done: () => void) { - let vars = env.parseEnvOutput("a=first\nb=multiple\nlines"); + test('Parses multi-line environment variables at end of env', function (done: () => void) { + let vars = env.parseEnvOutput('a=first\nb=multiple\nlines'); assert.equal(Object.keys(vars).length, 2); - assert.equal(vars['a'], "first"); - assert.equal(vars['b'], "multiple\nlines"); + assert.equal(vars['a'], 'first'); + assert.equal(vars['b'], 'multiple\nlines'); done(); }); - test('Parses multi-line environment variables at start of env', function(done: () => void) { - let vars = env.parseEnvOutput("a=multiple\nlines\nb=second"); + test('Parses multi-line environment variables at start of env', function (done: () => void) { + let vars = env.parseEnvOutput('a=multiple\nlines\nb=second'); assert.equal(Object.keys(vars).length, 2); - assert.equal(vars['a'], "multiple\nlines"); - assert.equal(vars['b'], "second"); + assert.equal(vars['a'], 'multiple\nlines'); + assert.equal(vars['b'], 'second'); done(); }); - test('Parses complex multi-line environment variables', function(done: () => void) { - let vars = env.parseEnvOutput("a=1\nb=\n23 =4\n_5c=56\n d=7\nE =8"); + test('Parses complex multi-line environment variables', function (done: () => void) { + let vars = env.parseEnvOutput('a=1\nb=\n23 =4\n_5c=56\n d=7\nE =8'); assert.equal(Object.keys(vars).length, 3); - assert.equal(vars['a'], "1"); - assert.equal(vars['b'], "\n23 =4"); - assert.equal(vars['_5c'], "56\n d=7\nE =8"); + assert.equal(vars['a'], '1'); + assert.equal(vars['b'], '\n23 =4'); + assert.equal(vars['_5c'], '56\n d=7\nE =8'); done(); }); diff --git a/src/vs/base/test/node/extfs/extfs.test.ts b/src/vs/base/test/node/extfs/extfs.test.ts index e03558db1d8..076c54ad3e1 100644 --- a/src/vs/base/test/node/extfs/extfs.test.ts +++ b/src/vs/base/test/node/extfs/extfs.test.ts @@ -13,12 +13,11 @@ import fs = require('fs'); import uuid = require('vs/base/common/uuid'); import strings = require('vs/base/common/strings'); -import platform = require('vs/base/common/platform'); import extfs = require('vs/base/node/extfs'); suite('Extfs', () => { - test('mkdirp', function(done: () => void) { + test('mkdirp', function (done: () => void) { var id = uuid.generateUuid(); var parentDir = path.join(os.tmpdir(), 'vsctests', id); var newDir = path.join(parentDir, 'extfs', id); @@ -27,11 +26,11 @@ suite('Extfs', () => { assert.ok(!error); assert.ok(fs.existsSync(newDir)); - extfs.del(parentDir, os.tmpdir(), () => {}, done); + extfs.del(parentDir, os.tmpdir(), () => { }, done); }); // 493 = 0755 }); - test('copy, move and delete', function(done: () => void) { + test('copy, move and delete', function (done: () => void) { var id = uuid.generateUuid(); var id2 = uuid.generateUuid(); var sourceDir = require.toUrl('./fixtures'); @@ -75,7 +74,7 @@ suite('Extfs', () => { }); }); - test('readdir', function(done: () => void) { + test('readdir', function (done: () => void) { if (strings.canNormalize && typeof process.versions['electron'] !== 'undefined' /* needs electron */) { var id = uuid.generateUuid(); var parentDir = path.join(os.tmpdir(), 'vsctests', id); @@ -88,7 +87,7 @@ suite('Extfs', () => { extfs.readdir(path.join(parentDir, 'extfs', id), (error, children) => { assert.equal(children.some(n => n === 'öäü'), true); // Mac always converts to NFD, so - extfs.del(parentDir, os.tmpdir(), () => {}, done); + extfs.del(parentDir, os.tmpdir(), () => { }, done); }); }); // 493 = 0755 } else { diff --git a/src/vs/base/test/node/flow.test.ts b/src/vs/base/test/node/flow.test.ts index f4aa29a002e..51026e3e211 100644 --- a/src/vs/base/test/node/flow.test.ts +++ b/src/vs/base/test/node/flow.test.ts @@ -13,12 +13,12 @@ var sequence = flow.sequence; var parallel = flow.parallel; suite('Flow', () => { - function assertCounterEquals(counter, expected):void { - assert.ok(counter === expected, "Expected " + expected + " assertions, but got " + counter); + function assertCounterEquals(counter, expected): void { + assert.ok(counter === expected, 'Expected ' + expected + ' assertions, but got ' + counter); } function syncThrowsError(callback): void { - callback(new Error("foo"), null); + callback(new Error('foo'), null); } function syncSequenceGetThrowsError(value, callback) { @@ -34,7 +34,7 @@ suite('Flow', () => { function handleFirst(first) { //Foo } - ); + ); } function syncGet(value, callback): void { @@ -42,28 +42,28 @@ suite('Flow', () => { } function syncGetError(value, callback): void { - callback(new Error(""), null); + callback(new Error(''), null); } function asyncGet(value, callback): void { - process.nextTick(function() { + process.nextTick(function () { callback(null, value); }); } function asyncGetError(value, callback): void { - process.nextTick(function() { - callback(new Error(""), null); + process.nextTick(function () { + callback(new Error(''), null); }); } - test('loopSync', function(done: () => void) { - var elements = ["1", "2", "3"]; - loop(elements, function(element, callback, index, total) { + test('loopSync', function (done: () => void) { + var elements = ['1', '2', '3']; + loop(elements, function (element, callback, index, total) { assert.ok(index === 0 || index === 1 || index === 2); assert.deepEqual(3, total); callback(null, element); - }, function(error, result) { + }, function (error, result) { assert.equal(error, null); assert.deepEqual(result, elements); @@ -71,47 +71,47 @@ suite('Flow', () => { }); }); - test('loopByFunctionSync', function(done: () => void) { - var elements = function(callback) { - callback(null, ["1", "2", "3"]); + test('loopByFunctionSync', function (done: () => void) { + var elements = function (callback) { + callback(null, ['1', '2', '3']); }; - loop(elements, function(element, callback) { + loop(elements, function (element, callback) { callback(null, element); - }, function(error, result) { + }, function (error, result) { assert.equal(error, null); - assert.deepEqual(result, ["1", "2", "3"]); + assert.deepEqual(result, ['1', '2', '3']); done(); }); }); - test('loopByFunctionAsync', function(done: () => void) { - var elements = function(callback) { - process.nextTick(function() { - callback(null, ["1", "2", "3"]); + test('loopByFunctionAsync', function (done: () => void) { + var elements = function (callback) { + process.nextTick(function () { + callback(null, ['1', '2', '3']); }); }; - loop(elements, function(element, callback) { + loop(elements, function (element, callback) { callback(null, element); - }, function(error, result) { + }, function (error, result) { assert.equal(error, null); - assert.deepEqual(result, ["1", "2", "3"]); + assert.deepEqual(result, ['1', '2', '3']); done(); }); }); - test('loopSyncErrorByThrow', function(done: () => void) { - var elements = ["1", "2", "3"]; - loop(elements, function(element, callback) { - if (element === "2") { - throw new Error("foo"); + test('loopSyncErrorByThrow', function (done: () => void) { + var elements = ['1', '2', '3']; + loop(elements, function (element, callback) { + if (element === '2') { + throw new Error('foo'); } else { callback(null, element); } - }, function(error, result) { + }, function (error, result) { assert.ok(error); assert.ok(!result); @@ -119,15 +119,15 @@ suite('Flow', () => { }); }); - test('loopSyncErrorByCallback', function(done: () => void) { - var elements = ["1", "2", "3"]; - loop(elements, function(element, callback) { - if (element === "2") { - callback(new Error("foo"), null); + test('loopSyncErrorByCallback', function (done: () => void) { + var elements = ['1', '2', '3']; + loop(elements, function (element, callback) { + if (element === '2') { + callback(new Error('foo'), null); } else { callback(null, element); } - }, function(error, result) { + }, function (error, result) { assert.ok(error); assert.ok(!result); @@ -135,13 +135,13 @@ suite('Flow', () => { }); }); - test('loopAsync', function(done: () => void) { - var elements = ["1", "2", "3"]; - loop(elements, function(element, callback) { - process.nextTick(function() { + test('loopAsync', function (done: () => void) { + var elements = ['1', '2', '3']; + loop(elements, function (element, callback) { + process.nextTick(function () { callback(null, element); }); - }, function(error, result) { + }, function (error, result) { assert.equal(error, null); assert.deepEqual(result, elements); @@ -149,17 +149,17 @@ suite('Flow', () => { }); }); - test('loopAsyncErrorByCallback', function(done: () => void) { - var elements = ["1", "2", "3"]; - loop(elements, function(element, callback) { - process.nextTick(function() { - if (element === "2") { - callback(new Error("foo"), null); + test('loopAsyncErrorByCallback', function (done: () => void) { + var elements = ['1', '2', '3']; + loop(elements, function (element, callback) { + process.nextTick(function () { + if (element === '2') { + callback(new Error('foo'), null); } else { callback(null, element); } }); - }, function(error, result) { + }, function (error, result) { assert.ok(error); assert.ok(!result); @@ -167,7 +167,7 @@ suite('Flow', () => { }); }); - test('sequenceSync', function(done: () => void) { + test('sequenceSync', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -177,17 +177,17 @@ suite('Flow', () => { }, function getFirst() { - syncGet("1", this); + syncGet('1', this); }, function handleFirst(first) { - assert.deepEqual("1", first); + assert.deepEqual('1', first); assertionCount++; - syncGet("2", this); + syncGet('2', this); }, function handleSecond(second) { - assert.deepEqual("2", second); + assert.deepEqual('2', second); assertionCount++; syncGet(null, this); }, @@ -200,10 +200,10 @@ suite('Flow', () => { assertCounterEquals(errorCount, 0); done(); } - ); + ); }); - test('sequenceAsync', function(done: () => void) { + test('sequenceAsync', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -213,17 +213,17 @@ suite('Flow', () => { }, function getFirst() { - asyncGet("1", this); + asyncGet('1', this); }, function handleFirst(first) { - assert.deepEqual("1", first); + assert.deepEqual('1', first); assertionCount++; - asyncGet("2", this); + asyncGet('2', this); }, function handleSecond(second) { - assert.deepEqual("2", second); + assert.deepEqual('2', second); assertionCount++; asyncGet(null, this); }, @@ -236,10 +236,10 @@ suite('Flow', () => { assertCounterEquals(errorCount, 0); done(); } - ); + ); }); - test('sequenceSyncErrorByThrow', function(done: () => void) { + test('sequenceSyncErrorByThrow', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -253,30 +253,30 @@ suite('Flow', () => { }, function getFirst() { - syncGet("1", this); + syncGet('1', this); }, function handleFirst(first) { - assert.deepEqual("1", first); + assert.deepEqual('1', first); assertionCount++; - syncGet("2", this); + syncGet('2', this); }, function handleSecond(second) { if (true) { - throw new Error(""); + throw new Error(''); } // assertionCount++; // syncGet(null, this); }, function handleThird(third) { - throw new Error("We should not be here"); + throw new Error('We should not be here'); } - ); + ); }); - test('sequenceSyncErrorByCallback', function(done: () => void) { + test('sequenceSyncErrorByCallback', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -290,22 +290,22 @@ suite('Flow', () => { }, function getFirst() { - syncGet("1", this); + syncGet('1', this); }, function handleFirst(first) { - assert.deepEqual("1", first); + assert.deepEqual('1', first); assertionCount++; - syncGetError("2", this); + syncGetError('2', this); }, function handleSecond(second) { - throw new Error("We should not be here"); + throw new Error('We should not be here'); } - ); + ); }); - test('sequenceAsyncErrorByThrow', function(done: () => void) { + test('sequenceAsyncErrorByThrow', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -319,30 +319,30 @@ suite('Flow', () => { }, function getFirst() { - asyncGet("1", this); + asyncGet('1', this); }, function handleFirst(first) { - assert.deepEqual("1", first); + assert.deepEqual('1', first); assertionCount++; - asyncGet("2", this); + asyncGet('2', this); }, function handleSecond(second) { if (true) { - throw new Error(""); + throw new Error(''); } // assertionCount++; // asyncGet(null, this); }, function handleThird(third) { - throw new Error("We should not be here"); + throw new Error('We should not be here'); } - ); + ); }); - test('sequenceAsyncErrorByCallback', function(done: () => void) { + test('sequenceAsyncErrorByCallback', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -356,34 +356,34 @@ suite('Flow', () => { }, function getFirst() { - asyncGet("1", this); + asyncGet('1', this); }, function handleFirst(first) { - assert.deepEqual("1", first); + assert.deepEqual('1', first); assertionCount++; - asyncGetError("2", this); + asyncGetError('2', this); }, function handleSecond(second) { - throw new Error("We should not be here"); + throw new Error('We should not be here'); } - ); + ); }); - test('syncChainedSequenceError', function(done: () => void) { + test('syncChainedSequenceError', function (done: () => void) { sequence( function onError(error) { done(); }, function getFirst() { - syncSequenceGetThrowsError("1", this); + syncSequenceGetThrowsError('1', this); } - ); + ); }); - test('tolerateBooleanResults', function(done: () => void) { + test('tolerateBooleanResults', function (done: () => void) { var assertionCount = 0; var errorCount = 0; @@ -409,16 +409,16 @@ suite('Flow', () => { assertCounterEquals(errorCount, 0); done(); } - ); + ); }); - test('loopTolerateBooleanResults', function(done: () => void) { - var elements = ["1", "2", "3"]; - loop(elements, function(element, callback) { - process.nextTick(function() { + test('loopTolerateBooleanResults', function (done: () => void) { + var elements = ['1', '2', '3']; + loop(elements, function (element, callback) { + process.nextTick(function () { (callback)(true); }); - }, function(error, result) { + }, function (error, result) { assert.equal(error, null); assert.deepEqual(result, [true, true, true]); @@ -426,14 +426,14 @@ suite('Flow', () => { }); }); - test('parallel', function(done: () => void) { + test('parallel', function (done: () => void) { var elements = [1, 2, 3, 4, 5]; var sum = 0; - parallel(elements, function(element, callback) { + parallel(elements, function (element, callback) { sum += element; callback(null, element * element); - }, function(errors, result) { + }, function (errors, result) { assert.ok(!errors); assert.deepEqual(sum, 15); @@ -443,17 +443,17 @@ suite('Flow', () => { }); }); - test('parallel - setTimeout', function(done: () => void) { + test('parallel - setTimeout', function (done: () => void) { var elements = [1, 2, 3, 4, 5]; var timeouts = [10, 30, 5, 0, 4]; var sum = 0; - parallel(elements, function(element, callback) { - setTimeout(function() { + parallel(elements, function (element, callback) { + setTimeout(function () { sum += element; callback(null, element * element); }, timeouts.pop()); - }, function(errors, result) { + }, function (errors, result) { assert.ok(!errors); assert.deepEqual(sum, 15); @@ -463,13 +463,13 @@ suite('Flow', () => { }); }); - test('parallel - with error', function(done: () => void) { + test('parallel - with error', function (done: () => void) { var elements = [1, 2, 3, 4, 5]; var timeouts = [10, 30, 5, 0, 4]; var sum = 0; - parallel(elements, function(element, callback) { - setTimeout(function() { + parallel(elements, function (element, callback) { + setTimeout(function () { if (element === 4) { callback(new Error('error!'), null); } else { @@ -477,7 +477,7 @@ suite('Flow', () => { callback(null, element * element); } }, timeouts.pop()); - }, function(errors, result) { + }, function (errors, result) { assert.ok(errors); assert.deepEqual(errors, [null, null, null, new Error('error!'), null]); diff --git a/src/vs/base/test/node/mime/mime.test.ts b/src/vs/base/test/node/mime/mime.test.ts index 9606242a66b..05cd05c7456 100644 --- a/src/vs/base/test/node/mime/mime.test.ts +++ b/src/vs/base/test/node/mime/mime.test.ts @@ -12,7 +12,7 @@ import mime = require('vs/base/node/mime'); suite('Mime', () => { - test('detectMimesFromFile (JSON saved as PNG)', function(done: () => void) { + test('detectMimesFromFile (JSON saved as PNG)', function (done: () => void) { var file = require.toUrl('./fixtures/some.json.png'); mime.detectMimesFromFile(file, (error, mimes) => { assert.equal(error, null); @@ -22,7 +22,7 @@ suite('Mime', () => { }); }); - test('detectMimesFromFile (PNG saved as TXT)', function(done: () => void) { + test('detectMimesFromFile (PNG saved as TXT)', function (done: () => void) { mimeCommon.registerTextMime({ mime: 'text/plain', extension: '.txt' }); var file = require.toUrl('./fixtures/some.png.txt'); mime.detectMimesFromFile(file, (error, mimes) => { @@ -33,7 +33,7 @@ suite('Mime', () => { }); }); - test('detectMimesFromFile (XML saved as PNG)', function(done: () => void) { + test('detectMimesFromFile (XML saved as PNG)', function (done: () => void) { var file = require.toUrl('./fixtures/some.xml.png'); mime.detectMimesFromFile(file, (error, mimes) => { assert.equal(error, null); @@ -43,7 +43,7 @@ suite('Mime', () => { }); }); - test('detectMimesFromFile (QWOFF saved as TXT)', function(done: () => void) { + test('detectMimesFromFile (QWOFF saved as TXT)', function (done: () => void) { var file = require.toUrl('./fixtures/some.qwoff.txt'); mime.detectMimesFromFile(file, (error, mimes) => { assert.equal(error, null); @@ -53,7 +53,7 @@ suite('Mime', () => { }); }); - test('detectMimesFromFile (CSS saved as QWOFF)', function(done: () => void) { + test('detectMimesFromFile (CSS saved as QWOFF)', function (done: () => void) { var file = require.toUrl('./fixtures/some.css.qwoff'); mime.detectMimesFromFile(file, (error, mimes) => { assert.equal(error, null); @@ -63,7 +63,7 @@ suite('Mime', () => { }); }); - test('detectMimesFromFile (PDF)', function(done: () => void) { + test('detectMimesFromFile (PDF)', function (done: () => void) { var file = require.toUrl('./fixtures/some.pdf'); mime.detectMimesFromFile(file, (error, mimes) => { assert.equal(error, null); diff --git a/src/vs/base/test/node/service/service.test.ts b/src/vs/base/test/node/service/service.test.ts index f41cacf9346..7d4bcf05186 100644 --- a/src/vs/base/test/node/service/service.test.ts +++ b/src/vs/base/test/node/service/service.test.ts @@ -25,7 +25,7 @@ function createService() { suite('Service', () => { - test('createService', function(done: () => void) { + test('createService', function (done: () => void) { if (process.env['VSCODE_PID']) { return done(); // TODO@Ben find out why test fails when run from within VS Code } @@ -40,7 +40,7 @@ suite('Service', () => { }); }); - test('cancellation', function(done: () => void) { + test('cancellation', function (done: () => void) { const testService = createService(); const res = testService.cancelMe(); diff --git a/src/vs/base/test/node/stream/stream.test.ts b/src/vs/base/test/node/stream/stream.test.ts index 488e41bdc80..7c674aea7c8 100644 --- a/src/vs/base/test/node/stream/stream.test.ts +++ b/src/vs/base/test/node/stream/stream.test.ts @@ -11,7 +11,7 @@ import fs = require('fs'); import stream = require('vs/base/node/stream'); suite('Stream', () => { - test('readExactlyByFile - ANSI', function(done: () => void) { + test('readExactlyByFile - ANSI', function (done: () => void) { var file = require.toUrl('./fixtures/file.css'); stream.readExactlyByFile(file, 10, (error: Error, buffer: NodeBuffer, count: number) => { @@ -23,7 +23,7 @@ suite('Stream', () => { }); }); - test('readExactlyByFile - empty', function(done: () => void) { + test('readExactlyByFile - empty', function (done: () => void) { var file = require.toUrl('./fixtures/empty.txt'); stream.readExactlyByFile(file, 10, (error: Error, buffer: NodeBuffer, count: number) => { @@ -34,7 +34,7 @@ suite('Stream', () => { }); }); - test('readExactlyByStream - ANSI', function(done: () => void) { + test('readExactlyByStream - ANSI', function (done: () => void) { var file = require.toUrl('./fixtures/file.css'); stream.readExactlyByStream(fs.createReadStream(file), 10, (error: Error, buffer: NodeBuffer, count: number) => { @@ -46,7 +46,7 @@ suite('Stream', () => { }); }); - test('readExactlyByStream - empty', function(done: () => void) { + test('readExactlyByStream - empty', function (done: () => void) { var file = require.toUrl('./fixtures/empty.txt'); stream.readExactlyByStream(fs.createReadStream(file), 10, (error: Error, buffer: NodeBuffer, count: number) => { diff --git a/src/vs/workbench/parts/files/test/browser/events.test.ts b/src/vs/workbench/parts/files/test/browser/events.test.ts index 791c21e6c4a..84bcfda8abb 100644 --- a/src/vs/workbench/parts/files/test/browser/events.test.ts +++ b/src/vs/workbench/parts/files/test/browser/events.test.ts @@ -6,18 +6,15 @@ 'use strict'; import * as assert from 'assert'; -import URI from 'vs/base/common/uri'; -import {Event, PropertyChangeEvent} from 'vs/base/common/events'; -import {CommandEvent, EditorEvent} from 'vs/workbench/common/events'; import {LocalFileChangeEvent} from 'vs/workbench/parts/files/common/files'; import {FileImportedEvent} from 'vs/workbench/parts/files/browser/fileActions'; -suite("Files - Events", () => { +suite('Files - Events', () => { - test("File Change Event (simple)", function() { + test('File Change Event (simple)', function () { let origEvent: any = {}; - let oldValue: any = { foo: "bar" }; - let newValue: any = { foo: "foo" }; + let oldValue: any = { foo: 'bar' }; + let newValue: any = { foo: 'foo' }; let event = new LocalFileChangeEvent(oldValue, newValue, origEvent); assert.strictEqual(event.originalEvent, origEvent); @@ -26,9 +23,9 @@ suite("Files - Events", () => { assert(event.time); }); - test("File Upload Event", function() { + test('File Upload Event', function () { let origEvent: any = {}; - let value: any = { foo: "bar" }; + let value: any = { foo: 'bar' }; let event = new FileImportedEvent(value, true, origEvent); assert.strictEqual(event.originalEvent, origEvent); @@ -46,4 +43,4 @@ suite("Files - Events", () => { assert(!event.gotMoved()); assert(!event.gotDeleted()); }); -}); +}); \ No newline at end of file diff --git a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts index 04a04cac6c1..9527af4dd07 100644 --- a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts +++ b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts @@ -22,8 +22,8 @@ function toResource(path) { suite('Files - FileEditorInput', () => { - test('FileEditorInput', function(done) { - let editorService = new TestEditorService(function() { }); + test('FileEditorInput', function (done) { + let editorService = new TestEditorService(function () { }); let eventService = new TestEventService(); let telemetryService = new MainTelemetryService(); let contextService = new TestContextService(); @@ -65,32 +65,32 @@ suite('Files - FileEditorInput', () => { let inputToResolve = instantiationService.createInstance(FileEditorInput, toResource('/foo/bar/file.js'), 'text/javascript', void 0); let sameOtherInput = instantiationService.createInstance(FileEditorInput, toResource('/foo/bar/file.js'), 'text/javascript', void 0); - return editorService.resolveEditorModel(inputToResolve, true).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, true).then(function (resolved) { let resolvedModelA = resolved; - return editorService.resolveEditorModel(inputToResolve, true).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, true).then(function (resolved) { assert(resolvedModelA === resolved); // OK: Resolved Model cached globally per input assert(inputToResolve.getStatus()); - return editorService.resolveEditorModel(sameOtherInput, true).then(function(otherResolved) { + return editorService.resolveEditorModel(sameOtherInput, true).then(function (otherResolved) { assert(otherResolved === resolvedModelA); // OK: Resolved Model cached globally per input inputToResolve.dispose(false); - return editorService.resolveEditorModel(inputToResolve, true).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, true).then(function (resolved) { assert(resolvedModelA === resolved); // Model is still the same because we had 2 clients inputToResolve.dispose(true); sameOtherInput.dispose(true); - return editorService.resolveEditorModel(inputToResolve, true).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, true).then(function (resolved) { assert(resolvedModelA !== resolved); // Different instance, because input got disposed let stat = (resolved).versionOnDiskStat; - return editorService.resolveEditorModel(inputToResolve, true).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, true).then(function (resolved) { assert(stat !== (resolved).versionOnDiskStat); // Different stat, because resolve always goes to the server for refresh stat = (resolved).versionOnDiskStat; - return editorService.resolveEditorModel(inputToResolve, false).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, false).then(function (resolved) { assert(stat === (resolved).versionOnDiskStat); // Same stat, because not refreshed done(); @@ -103,7 +103,7 @@ suite('Files - FileEditorInput', () => { }); }); - test('Input.matches() - FileEditorInput', function() { + test('Input.matches() - FileEditorInput', function () { let fileEditorInput = new FileEditorInput(toResource('/foo/bar/updatefile.js'), 'text/javascript', void 0, void 0, void 0, void 0); let contentEditorInput2 = new FileEditorInput(toResource('/foo/bar/updatefile.js'), 'text/javascript', void 0, void 0, void 0, void 0); @@ -112,8 +112,8 @@ suite('Files - FileEditorInput', () => { assert.strictEqual(fileEditorInput.matches(contentEditorInput2), true); }); - test('FileTracker - dispose()', function(done) { - let editorService = new TestEditorService(function() { }); + test('FileTracker - dispose()', function (done) { + let editorService = new TestEditorService(function () { }); let telemetryService = new MainTelemetryService(); let contextService = new TestContextService(); @@ -140,8 +140,8 @@ suite('Files - FileEditorInput', () => { let inputToResolve = instantiationService.createInstance(FileEditorInput, toResource('/fooss5/bar/file2.js'), 'text/javascript', void 0); let sameOtherInput = instantiationService.createInstance(FileEditorInput, toResource('/fooss5/bar/file2.js'), 'text/javascript', void 0); - return editorService.resolveEditorModel(inputToResolve).then(function(resolved) { - return editorService.resolveEditorModel(sameOtherInput).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve).then(function (resolved) { + return editorService.resolveEditorModel(sameOtherInput).then(function (resolved) { (tracker).disposeAll(toResource('/bar'), []); assert(!inputToResolve.isDisposed()); assert(!sameOtherInput.isDisposed()); @@ -156,8 +156,8 @@ suite('Files - FileEditorInput', () => { }); }); - test('FileEditorInput - dispose() also works for folders', function(done) { - let editorService = new TestEditorService(function() { }); + test('FileEditorInput - dispose() also works for folders', function (done) { + let editorService = new TestEditorService(function () { }); let telemetryService = new MainTelemetryService(); let contextService = new TestContextService(); @@ -184,8 +184,8 @@ suite('Files - FileEditorInput', () => { let inputToResolve = instantiationService.createInstance(FileEditorInput, toResource('/foo6/bar/file.js'), 'text/javascript', void 0); let sameOtherInput = instantiationService.createInstance(FileEditorInput, toResource('/foo6/bar/file.js'), 'text/javascript', void 0); - return editorService.resolveEditorModel(inputToResolve, true).then(function(resolved) { - return editorService.resolveEditorModel(sameOtherInput, true).then(function(resolved) { + return editorService.resolveEditorModel(inputToResolve, true).then(function (resolved) { + return editorService.resolveEditorModel(sameOtherInput, true).then(function (resolved) { (tracker).disposeAll(toResource('/bar'), []); assert(!inputToResolve.isDisposed()); assert(!sameOtherInput.isDisposed()); diff --git a/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts b/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts index a01a5268f19..8f90d4c62e2 100644 --- a/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts +++ b/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts @@ -14,12 +14,8 @@ import {TextFileEditorModel, CACHE} from 'vs/workbench/parts/files/common/editor import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {TextFileService} from 'vs/workbench/parts/files/browser/textFileServices'; -import {EventType, LocalFileChangeEvent} from 'vs/workbench/parts/files/common/files'; +import {EventType} from 'vs/workbench/parts/files/common/files'; import {TestFileService, TestLifecycleService, TestPartService, TestEditorService, TestConfigurationService, TestUntitledEditorService, TestStorageService, TestTelemetryService, TestContextService, TestMessageService, TestEventService} from 'vs/workbench/test/browser/servicesTestUtils'; -import Severity = require('vs/base/common/severity'); -import {IEventService} from 'vs/platform/event/common/event'; -import {IMessageService, IConfirmation} from 'vs/platform/message/common/message'; -import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; function toResource(path) { @@ -63,10 +59,10 @@ suite('Files - TextFileEditorModel', () => { CACHE.clear(); }); - test("Resolves from cache and disposes when last input disposed", function(done) { - let c1 = baseInstantiationService.createInstance(FileEditorInput, toResource("/path/index.txt"), "text/plain", "utf8"); - let c2 = baseInstantiationService.createInstance(FileEditorInput, toResource("/path/index.txt"), "text/plain", "utf8"); - let c3 = baseInstantiationService.createInstance(FileEditorInput, toResource("/path/index.txt"), "text/plain", "utf8"); + test('Resolves from cache and disposes when last input disposed', function (done) { + let c1 = baseInstantiationService.createInstance(FileEditorInput, toResource('/path/index.txt'), 'text/plain', 'utf8'); + let c2 = baseInstantiationService.createInstance(FileEditorInput, toResource('/path/index.txt'), 'text/plain', 'utf8'); + let c3 = baseInstantiationService.createInstance(FileEditorInput, toResource('/path/index.txt'), 'text/plain', 'utf8'); c1.resolve(true).then((model1) => { c2.resolve(true).then((model2) => { @@ -91,8 +87,8 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Load does not trigger save", function(done) { - let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index.txt"), "utf8"); + test('Load does not trigger save', function (done) { + let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource('/path/index.txt'), 'utf8'); eventService.addListener('files:internalFileChanged', () => { assert.ok(false); @@ -115,11 +111,11 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Load returns dirty model as long as model is dirty", function(done) { - let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index_async.txt"), "utf8"); + test('Load returns dirty model as long as model is dirty', function (done) { + let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource('/path/index_async.txt'), 'utf8'); m1.load().then(() => { - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); assert.ok(m1.isDirty()); m1.load().then(() => { @@ -132,23 +128,23 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Revert", function(done) { + test('Revert', function (done) { let eventCounter = 0; eventService.addListener('files:fileReverted', () => { eventCounter++; }); - let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index_async.txt"), "utf8"); + let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource('/path/index_async.txt'), 'utf8'); m1.load().then(() => { - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); assert.ok(m1.isDirty()); m1.revert().then(() => { assert.ok(!m1.isDirty()); - assert.equal(m1.textEditorModel.getValue(), "Hello Html"); + assert.equal(m1.textEditorModel.getValue(), 'Hello Html'); assert.equal(eventCounter, 1); m1.dispose(); @@ -158,18 +154,18 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Conflict Resolution Mode", function(done) { - let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index_async.txt"), "utf8"); + test('Conflict Resolution Mode', function (done) { + let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource('/path/index_async.txt'), 'utf8'); m1.load().then(() => { m1.setConflictResolutionMode(); - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); assert.ok(m1.isDirty()); assert.ok(m1.isInConflictResolutionMode()); m1.revert().then(() => { - m1.textEditorModel.setValue("bar"); + m1.textEditorModel.setValue('bar'); assert.ok(m1.isDirty()); return m1.save().then(() => { @@ -183,9 +179,9 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Auto Save triggered when model changes", function(done) { + test('Auto Save triggered when model changes', function (done) { let eventCounter = 0; - let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index.txt"), "utf8"); + let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource('/path/index.txt'), 'utf8'); (m1).autoSaveAfterMillies = 10; (m1).autoSaveAfterMilliesEnabled = true; @@ -199,7 +195,7 @@ suite('Files - TextFileEditorModel', () => { }); m1.load().then(() => { - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); return TPromise.timeout(50).then(() => { assert.ok(!m1.isDirty()); @@ -212,15 +208,15 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Dirty tracking", function(done) { - let resource = toResource("/path/index_async.txt"); - let i1 = baseInstantiationService.createInstance(FileEditorInput, resource, "text/plain", "utf8"); + test('Dirty tracking', function (done) { + let resource = toResource('/path/index_async.txt'); + let i1 = baseInstantiationService.createInstance(FileEditorInput, resource, 'text/plain', 'utf8'); i1.resolve().then((m1: TextFileEditorModel) => { let dirty = m1.getLastDirtyTime(); assert.ok(!dirty); - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); assert.ok(m1.isDirty()); assert.ok(m1.getLastDirtyTime() > dirty); @@ -234,13 +230,13 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("save() and isDirty() - proper with check for mtimes", function(done) { - let c1 = baseInstantiationService.createInstance(FileEditorInput, toResource("/path/index_async2.txt"), "text/plain", "utf8"); - let c2 = baseInstantiationService.createInstance(FileEditorInput, toResource("/path/index_async.txt"), "text/plain", "utf8"); + test('save() and isDirty() - proper with check for mtimes', function (done) { + let c1 = baseInstantiationService.createInstance(FileEditorInput, toResource('/path/index_async2.txt'), 'text/plain', 'utf8'); + let c2 = baseInstantiationService.createInstance(FileEditorInput, toResource('/path/index_async.txt'), 'text/plain', 'utf8'); c1.resolve().then((m1: TextFileEditorModel) => { c2.resolve().then((m2: TextFileEditorModel) => { - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); let m1Mtime = m1.getLastModifiedTime(); let m2Mtime = m2.getLastModifiedTime(); @@ -251,7 +247,7 @@ suite('Files - TextFileEditorModel', () => { assert.ok(textFileService.isDirty(toResource('/path/index_async2.txt'))); assert.ok(!textFileService.isDirty(toResource('/path/index_async.txt'))); - m2.textEditorModel.setValue("foo"); + m2.textEditorModel.setValue('foo'); assert.ok(textFileService.isDirty(toResource('/path/index_async.txt'))); return TPromise.timeout(10).then(() => { @@ -271,25 +267,25 @@ suite('Files - TextFileEditorModel', () => { }); }); - test("Save Participant", function(done) { + test('Save Participant', function (done) { let eventCounter = 0; - let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index_async.txt"), "utf8"); + let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource('/path/index_async.txt'), 'utf8'); eventService.addListener(EventType.FILE_SAVED, (e) => { - assert.equal(m1.getValue(), "bar"); + assert.equal(m1.getValue(), 'bar'); assert.ok(!m1.isDirty()); eventCounter++; }); eventService.addListener(EventType.FILE_SAVING, (e) => { assert.ok(m1.isDirty()); - m1.textEditorModel.setValue("bar"); + m1.textEditorModel.setValue('bar'); assert.ok(m1.isDirty()); eventCounter++; }); m1.load().then(() => { - m1.textEditorModel.setValue("foo"); + m1.textEditorModel.setValue('foo'); m1.save().then(() => { m1.dispose(); @@ -300,4 +296,4 @@ suite('Files - TextFileEditorModel', () => { }); }); }); -}); +}); \ No newline at end of file diff --git a/src/vs/workbench/parts/files/test/browser/textFileEditor.test.ts b/src/vs/workbench/parts/files/test/browser/textFileEditor.test.ts index 9f4dd2f98b9..a5b20a85c5f 100644 --- a/src/vs/workbench/parts/files/test/browser/textFileEditor.test.ts +++ b/src/vs/workbench/parts/files/test/browser/textFileEditor.test.ts @@ -21,9 +21,9 @@ class MyOtherClass { } suite('Files - TextFileEditor', () => { - test("TextFile Editor Registration", function() { - let d1 = new FileEditorDescriptor("ce-id1", "name", "vs/workbench/parts/files/browser/tests/contentEditor.test", "MyClass", ["test-text/html", "test-text/javascript"]); - let d2 = new FileEditorDescriptor("ce-id2", "name", "vs/workbench/parts/files/browser/tests/contentEditor.test", "MyOtherClass", ["test-text/css", "test-text/javascript"]); + test('TextFile Editor Registration', function () { + let d1 = new FileEditorDescriptor('ce-id1', 'name', 'vs/workbench/parts/files/browser/tests/contentEditor.test', 'MyClass', ['test-text/html', 'test-text/javascript']); + let d2 = new FileEditorDescriptor('ce-id2', 'name', 'vs/workbench/parts/files/browser/tests/contentEditor.test', 'MyOtherClass', ['test-text/css', 'test-text/javascript']); let oldEditors = Registry.as(ExtensionId).getEditors(); Registry.as(ExtensionId).setEditors([]); @@ -37,9 +37,9 @@ suite('Files - TextFileEditor', () => { equal(Registry.as(ExtensionId).getEditors().length, oldEditorCnt + 2); equal(Registry.as(ExtensionId).getEditorInputs().length, oldInputCnt + 2); - strictEqual(Registry.as(ExtensionId).getEditor(new FileEditorInput(URI.file(join('C:\\', "/foo/bar/foobar.html")), "test-text/html", void 0, void 0, void 0, void 0)), d1); - strictEqual(Registry.as(ExtensionId).getEditor(new FileEditorInput(URI.file(join('C:\\', "/foo/bar/foobar.js")), "test-text/javascript", void 0, void 0, void 0, void 0)), d1); - strictEqual(Registry.as(ExtensionId).getEditor(new FileEditorInput(URI.file(join('C:\\', "/foo/bar/foobar.css")), "test-text/css", void 0, void 0, void 0, void 0)), d2); + strictEqual(Registry.as(ExtensionId).getEditor(new FileEditorInput(URI.file(join('C:\\', '/foo/bar/foobar.html')), 'test-text/html', void 0, void 0, void 0, void 0)), d1); + strictEqual(Registry.as(ExtensionId).getEditor(new FileEditorInput(URI.file(join('C:\\', '/foo/bar/foobar.js')), 'test-text/javascript', void 0, void 0, void 0, void 0)), d1); + strictEqual(Registry.as(ExtensionId).getEditor(new FileEditorInput(URI.file(join('C:\\', '/foo/bar/foobar.css')), 'test-text/css', void 0, void 0, void 0, void 0)), d2); Registry.as(ExtensionId).setEditors(oldEditors); }); diff --git a/src/vs/workbench/parts/files/test/browser/textFileEditorModelCache.test.ts b/src/vs/workbench/parts/files/test/browser/textFileEditorModelCache.test.ts index 479cf624b1d..ce07d590892 100644 --- a/src/vs/workbench/parts/files/test/browser/textFileEditorModelCache.test.ts +++ b/src/vs/workbench/parts/files/test/browser/textFileEditorModelCache.test.ts @@ -12,7 +12,7 @@ import {EditorModel} from 'vs/workbench/common/editor'; suite('Files - TextFileEditorModelCache', () => { - test('add, remove, clear', function() { + test('add, remove, clear', function () { let cache = new TextFileEditorModelCache(); let m1 = new EditorModel(); diff --git a/src/vs/workbench/parts/files/test/browser/viewModel.test.ts b/src/vs/workbench/parts/files/test/browser/viewModel.test.ts index 0acebfb3291..4dfdae2d7bd 100644 --- a/src/vs/workbench/parts/files/test/browser/viewModel.test.ts +++ b/src/vs/workbench/parts/files/test/browser/viewModel.test.ts @@ -24,49 +24,48 @@ function toResource(path) { suite('Files - View Model', () => { - test("Properties", function() { + test('Properties', function () { let d = new Date().getTime(); - let s = createStat("/path/to/stat", "sName", true, true, 8096, d); + let s = createStat('/path/to/stat', 'sName', true, true, 8096, d); assert.strictEqual(s.isDirectoryResolved, false); - assert.strictEqual(s.resource.fsPath, toResource("/path/to/stat").fsPath); - assert.strictEqual(s.name, "sName"); + assert.strictEqual(s.resource.fsPath, toResource('/path/to/stat').fsPath); + assert.strictEqual(s.name, 'sName'); assert.strictEqual(s.isDirectory, true); assert.strictEqual(s.hasChildren, true); assert.strictEqual(s.mtime, new Date(d).getTime()); assert(isArray(s.children) && s.children.length === 0); - s = createStat("/path/to/stat", "sName", false, false, 8096, d); + s = createStat('/path/to/stat', 'sName', false, false, 8096, d); assert(isUndefinedOrNull(s.children)); }); - test("Add and Remove Child, check for hasChild", function() { - let d = new Date().getTime() - let s = createStat("/path/to/stat", "sName", true, false, 8096, d); - let s2 = createStat("/path/to/stat2", "sName2", false, false, 8096, d); + test('Add and Remove Child, check for hasChild', function () { + let d = new Date().getTime(); + let s = createStat('/path/to/stat', 'sName', true, false, 8096, d); + let s2 = createStat('/path/to/stat2', 'sName2', false, false, 8096, d); - let child1 = createStat("/path/to/stat/foo", "foo", true, false, 8096, d); - let child2 = createStat("/path/to/stat/bar.html", "bar", false, false, 8096, d); - let child3 = createStat("/path/to/stat/bar.html", "bar", false, false, 8096, d); - let child4 = createStat("/otherpath/to/other/otherbar.html", "otherbar.html", false, false, 8096, d); + let child1 = createStat('/path/to/stat/foo', 'foo', true, false, 8096, d); + let child2 = createStat('/path/to/stat/bar.html', 'bar', false, false, 8096, d); + let child4 = createStat('/otherpath/to/other/otherbar.html', 'otherbar.html', false, false, 8096, d); - assert.throws(function() { + assert.throws(function () { s2.addChild(child1); // Can not add into non directory }); - assert.throws(function() { + assert.throws(function () { s2.addChild(null); }); - assert.throws(function() { + assert.throws(function () { s2.hasChild(child1.name); }); - assert.throws(function() { + assert.throws(function () { s2.removeChild(child1); }); - assert.throws(function() { + assert.throws(function () { s.hasChild(null); }); @@ -90,30 +89,30 @@ suite('Files - View Model', () => { // Assert that adding a child updates its path properly s.addChild(child4); - assert.strictEqual(child4.resource.fsPath, toResource("/path/to/stat/" + child4.name).fsPath); + assert.strictEqual(child4.resource.fsPath, toResource('/path/to/stat/' + child4.name).fsPath); }); - test("Move", function() { + test('Move', function () { let d = new Date().getTime(); - let s1 = createStat("/", "/", true, false, 8096, d); - let s2 = createStat("/path", "path", true, false, 8096, d); - let s3 = createStat("/path/to", "to", true, false, 8096, d); - let s4 = createStat("/path/to/stat", "stat", false, false, 8096, d); + let s1 = createStat('/', '/', true, false, 8096, d); + let s2 = createStat('/path', 'path', true, false, 8096, d); + let s3 = createStat('/path/to', 'to', true, false, 8096, d); + let s4 = createStat('/path/to/stat', 'stat', false, false, 8096, d); s1.addChild(s2); s2.addChild(s3); s3.addChild(s4); - assert.throws(function() { + assert.throws(function () { s4.move(null); }); - assert.throws(function() { + assert.throws(function () { s2.move(s4); // Can not move into a file }); - assert.throws(function() { + assert.throws(function () { s1.move(s3); // Can not move root }); @@ -125,40 +124,40 @@ suite('Files - View Model', () => { assert.strictEqual(s1.children.length, 2); // Assert the new path of the moved element - assert.strictEqual(s4.resource.fsPath, toResource("/" + s4.name).fsPath); + assert.strictEqual(s4.resource.fsPath, toResource('/' + s4.name).fsPath); // Move a subtree with children - let leaf = createStat("/leaf", "leaf", true, false, 8096, d); - let leafC1 = createStat("/leaf/folder", "folder", true, false, 8096, d); - let leafCC2 = createStat("/leaf/folder/index.html", "index.html", true, false, 8096, d); + let leaf = createStat('/leaf', 'leaf', true, false, 8096, d); + let leafC1 = createStat('/leaf/folder', 'folder', true, false, 8096, d); + let leafCC2 = createStat('/leaf/folder/index.html', 'index.html', true, false, 8096, d); leaf.addChild(leafC1); leafC1.addChild(leafCC2); s1.addChild(leaf); leafC1.move(s3); - assert.strictEqual(leafC1.resource.fsPath, URI.file(s3.resource.fsPath + "/" + leafC1.name).fsPath); - assert.strictEqual(leafCC2.resource.fsPath, URI.file(leafC1.resource.fsPath + "/" + leafCC2.name).fsPath); + assert.strictEqual(leafC1.resource.fsPath, URI.file(s3.resource.fsPath + '/' + leafC1.name).fsPath); + assert.strictEqual(leafCC2.resource.fsPath, URI.file(leafC1.resource.fsPath + '/' + leafCC2.name).fsPath); }); - test("Rename", function() { + test('Rename', function () { let d = new Date().getTime(); - let s1 = createStat("/", "/", true, false, 8096, d); - let s2 = createStat("/path", "path", true, false, 8096, d); - let s3 = createStat("/path/to", "to", true, false, 8096, d); - let s4 = createStat("/path/to/stat", "stat", true, false, 8096, d); - let s5 = createStat("/path/to/stat", "stat", true, false, 8096, d); + let s1 = createStat('/', '/', true, false, 8096, d); + let s2 = createStat('/path', 'path', true, false, 8096, d); + let s3 = createStat('/path/to', 'to', true, false, 8096, d); + let s4 = createStat('/path/to/stat', 'stat', true, false, 8096, d); + let s5 = createStat('/path/to/stat', 'stat', true, false, 8096, d); - assert.throws(function() { + assert.throws(function () { s2.rename(null); }); - assert.throws(function() { + assert.throws(function () { s1.rename(s2); // Can not rename root }); - assert.throws(function() { + assert.throws(function () { s4.rename(s5); // Can not rename to stat from different workspace }); @@ -166,31 +165,31 @@ suite('Files - View Model', () => { s2.addChild(s3); s3.addChild(s4); - let s2renamed = createStat("/otherpath", "otherpath", true, true, 8096, d); + let s2renamed = createStat('/otherpath', 'otherpath', true, true, 8096, d); s2.rename(s2renamed); // Verify the paths have changed including children assert.strictEqual(s2.name, s2renamed.name); assert.strictEqual(s2.resource.fsPath, s2renamed.resource.fsPath); - assert.strictEqual(s3.resource.fsPath, toResource("/otherpath/to").fsPath); - assert.strictEqual(s4.resource.fsPath, toResource("/otherpath/to/stat").fsPath); + assert.strictEqual(s3.resource.fsPath, toResource('/otherpath/to').fsPath); + assert.strictEqual(s4.resource.fsPath, toResource('/otherpath/to/stat').fsPath); - let s4renamed = createStat("/otherpath/to/statother.js", "statother.js", true, false, 8096, d); + let s4renamed = createStat('/otherpath/to/statother.js', 'statother.js', true, false, 8096, d); s4.rename(s4renamed); assert.strictEqual(s4.name, s4renamed.name); assert.strictEqual(s4.resource.fsPath, s4renamed.resource.fsPath); }); - test("Find", function() { + test('Find', function () { let d = new Date().getTime(); - let s1 = createStat("/", "/", true, false, 8096, d); - let s2 = createStat("/path", "path", true, false, 8096, d); - let s3 = createStat("/path/to", "to", true, false, 8096, d); - let s4 = createStat("/path/to/stat", "stat", true, false, 8096, d); + let s1 = createStat('/', '/', true, false, 8096, d); + let s2 = createStat('/path', 'path', true, false, 8096, d); + let s3 = createStat('/path/to', 'to', true, false, 8096, d); + let s4 = createStat('/path/to/stat', 'stat', true, false, 8096, d); - let child1 = createStat("/path/to/stat/foo", "foo", true, false, 8096, d); - let child2 = createStat("/path/to/stat/foo/bar.html", "bar.html", false, false, 8096, d); + let child1 = createStat('/path/to/stat/foo', 'foo', true, false, 8096, d); + let child2 = createStat('/path/to/stat/foo/bar.html', 'bar.html', false, false, 8096, d); s1.addChild(s2); s2.addChild(s3); @@ -209,16 +208,16 @@ suite('Files - View Model', () => { assert.strictEqual(s1.find(toResource('/')), s1); }); - test("Find with mixed case", function() { + test('Find with mixed case', function () { let d = new Date().getTime(); - let s1 = createStat("/", "/", true, false, 8096, d); - let s2 = createStat("/path", "path", true, false, 8096, d); - let s3 = createStat("/path/to", "to", true, false, 8096, d); - let s4 = createStat("/path/to/stat", "stat", true, false, 8096, d); + let s1 = createStat('/', '/', true, false, 8096, d); + let s2 = createStat('/path', 'path', true, false, 8096, d); + let s3 = createStat('/path/to', 'to', true, false, 8096, d); + let s4 = createStat('/path/to/stat', 'stat', true, false, 8096, d); - let child1 = createStat("/path/to/stat/foo", "foo", true, false, 8096, d); - let child2 = createStat("/path/to/stat/foo/bar.html", "bar.html", false, false, 8096, d); + let child1 = createStat('/path/to/stat/foo', 'foo', true, false, 8096, d); + let child2 = createStat('/path/to/stat/foo/bar.html', 'bar.html', false, false, 8096, d); s1.addChild(s2); s2.addChild(s3); @@ -235,59 +234,59 @@ suite('Files - View Model', () => { } }); - test("Validate File Name (For Create)", function() { + test('Validate File Name (For Create)', function () { let d = new Date().getTime(); - let s = createStat("/path/to/stat", "sName", true, true, 8096, d); - let sChild = createStat("/path/to/stat/alles.klar", "alles.klar", true, true, 8096, d); + let s = createStat('/path/to/stat', 'sName', true, true, 8096, d); + let sChild = createStat('/path/to/stat/alles.klar', 'alles.klar', true, true, 8096, d); s.addChild(sChild); assert(validateFileName(s, null) !== null); - assert(validateFileName(s, "") !== null); - assert(validateFileName(s, " ") !== null); - assert(validateFileName(s, "Read Me") === null, "name containing space"); - assert(validateFileName(s, "foo/bar") !== null); - assert(validateFileName(s, "foo\\bar") !== null); + assert(validateFileName(s, '') !== null); + assert(validateFileName(s, ' ') !== null); + assert(validateFileName(s, 'Read Me') === null, 'name containing space'); + assert(validateFileName(s, 'foo/bar') !== null); + assert(validateFileName(s, 'foo\\bar') !== null); if (isWindows) { - assert(validateFileName(s, "foo:bar") !== null); - assert(validateFileName(s, "foo*bar") !== null); - assert(validateFileName(s, "foo?bar") !== null); - assert(validateFileName(s, "foobar") !== null); - assert(validateFileName(s, "foo|bar") !== null); + assert(validateFileName(s, 'foo:bar') !== null); + assert(validateFileName(s, 'foo*bar') !== null); + assert(validateFileName(s, 'foo?bar') !== null); + assert(validateFileName(s, 'foobar') !== null); + assert(validateFileName(s, 'foo|bar') !== null); } - assert(validateFileName(s, "alles.klar") !== null); + assert(validateFileName(s, 'alles.klar') !== null); - assert(validateFileName(s, ".foo") === null); - assert(validateFileName(s, "foo.bar") === null); - assert(validateFileName(s, "foo") === null); + assert(validateFileName(s, '.foo') === null); + assert(validateFileName(s, 'foo.bar') === null); + assert(validateFileName(s, 'foo') === null); }); - test("Validate File Name (For Rename)", function() { + test('Validate File Name (For Rename)', function () { let d = new Date().getTime(); - let s = createStat("/path/to/stat", "sName", true, true, 8096, d); - let sChild = createStat("/path/to/stat/alles.klar", "alles.klar", true, true, 8096, d); + let s = createStat('/path/to/stat', 'sName', true, true, 8096, d); + let sChild = createStat('/path/to/stat/alles.klar', 'alles.klar', true, true, 8096, d); s.addChild(sChild); - assert(validateFileName(s, "alles.klar") !== null); + assert(validateFileName(s, 'alles.klar') !== null); if (isLinux) { - assert(validateFileName(s, "Alles.klar") === null); - assert(validateFileName(s, "Alles.Klar") === null); + assert(validateFileName(s, 'Alles.klar') === null); + assert(validateFileName(s, 'Alles.Klar') === null); } else { - assert(validateFileName(s, "Alles.klar") !== null); - assert(validateFileName(s, "Alles.Klar") !== null); + assert(validateFileName(s, 'Alles.klar') !== null); + assert(validateFileName(s, 'Alles.Klar') !== null); } - assert(validateFileName(s, ".foo") === null); - assert(validateFileName(s, "foo.bar") === null); - assert(validateFileName(s, "foo") === null); + assert(validateFileName(s, '.foo') === null); + assert(validateFileName(s, 'foo.bar') === null); + assert(validateFileName(s, 'foo') === null); }); - test("File Change Event (with stats)", function() { + test('File Change Event (with stats)', function () { let d = new Date().toUTCString(); - let s1 = new FileStat(toResource("/path/to/sName"), false, false, "sName", 8096 /* Size */, d); - let s2 = new FileStat(toResource("/path/to/sName"), false, false, "sName", 16000 /* Size */, d); - let s3 = new FileStat(toResource("/path/to/sNameMoved"), false, false, "sNameMoved", 8096 /* Size */, d); + let s1 = new FileStat(toResource('/path/to/sName'), false, false, 'sName', 8096 /* Size */, d); + let s2 = new FileStat(toResource('/path/to/sName'), false, false, 'sName', 16000 /* Size */, d); + let s3 = new FileStat(toResource('/path/to/sNameMoved'), false, false, 'sNameMoved', 8096 /* Size */, d); // Got Added let event = new LocalFileChangeEvent(null, s1); @@ -325,28 +324,28 @@ suite('Files - View Model', () => { assert(!event.gotMoved()); }); - test("Merge Local with Disk", function() { + test('Merge Local with Disk', function () { let d = new Date().toUTCString(); - let merge1 = new FileStat(URI.file(join('C:\\', '/path/to')), true, false, "to", 8096, d); - let merge2 = new FileStat(URI.file(join('C:\\', '/path/to')), true, false, "to", 16000, new Date(0).toUTCString()); + let merge1 = new FileStat(URI.file(join('C:\\', '/path/to')), true, false, 'to', 8096, d); + let merge2 = new FileStat(URI.file(join('C:\\', '/path/to')), true, false, 'to', 16000, new Date(0).toUTCString()); // Merge Properties FileStat.mergeLocalWithDisk(merge2, merge1); assert.strictEqual(merge1.mtime, merge2.mtime); // Merge Child when isDirectoryResolved=false is a no-op - merge2.addChild(new FileStat(URI.file(join('C:\\', '/path/to/foo.html')), true, false, "foo.html", 8096, d)); + merge2.addChild(new FileStat(URI.file(join('C:\\', '/path/to/foo.html')), true, false, 'foo.html', 8096, d)); FileStat.mergeLocalWithDisk(merge2, merge1); assert.strictEqual(merge1.children.length, 0); // Merge Child with isDirectoryResolved=true - merge2.addChild(new FileStat(URI.file(join('C:\\', '/path/to/foo.html')), true, false, "foo.html", 8096, d)); + merge2.addChild(new FileStat(URI.file(join('C:\\', '/path/to/foo.html')), true, false, 'foo.html', 8096, d)); merge2.isDirectoryResolved = true; FileStat.mergeLocalWithDisk(merge2, merge1); assert.strictEqual(merge1.children.length, 1); - assert.strictEqual(merge1.children[0].name, "foo.html"); - assert.deepEqual(merge1.children[0].parent, merge1, "Check parent"); + assert.strictEqual(merge1.children[0].name, 'foo.html'); + assert.deepEqual(merge1.children[0].parent, merge1, 'Check parent'); // Verify that merge does not replace existing children, but updates properties in that case let existingChild = merge1.children[0]; diff --git a/src/vs/workbench/parts/output/test/outputWorker.test.ts b/src/vs/workbench/parts/output/test/outputWorker.test.ts index 809a99273af..75fa10d19fc 100644 --- a/src/vs/workbench/parts/output/test/outputWorker.test.ts +++ b/src/vs/workbench/parts/output/test/outputWorker.test.ts @@ -21,7 +21,7 @@ function toOSPath(p: string): string { suite('Workbench - OutputWorker', () => { - test('OutputWorker - Link detection', function() { + test('OutputWorker - Link detection', function () { let patternsSlash = OutputWorker.createPatterns({ id: 'foo', name: 'foo', diff --git a/src/vs/workbench/parts/search/test/browser/searchViewlet.test.ts b/src/vs/workbench/parts/search/test/browser/searchViewlet.test.ts index 4a7e5a4be0f..bc111805080 100644 --- a/src/vs/workbench/parts/search/test/browser/searchViewlet.test.ts +++ b/src/vs/workbench/parts/search/test/browser/searchViewlet.test.ts @@ -27,7 +27,7 @@ suite('Search - Viewlet', () => { }); }); - test('Data Source', function() { + test('Data Source', function () { let ds = new SearchDataSource(); let result = instantiation.createInstance(SearchResult, null); result.append([{ @@ -48,7 +48,7 @@ suite('Search - Viewlet', () => { assert(!ds.hasChildren(null, lineMatch)); }); - test('Sorter', function() { + test('Sorter', function () { let fileMatch1 = new FileMatch(null, uri.file('C:\\foo')); let fileMatch2 = new FileMatch(null, uri.file('C:\\with\\path')); let fileMatch3 = new FileMatch(null, uri.file('C:\\with\\path\\foo')); diff --git a/src/vs/workbench/parts/search/test/common/searchModel.test.ts b/src/vs/workbench/parts/search/test/common/searchModel.test.ts index 548269a8a5c..ff93adc4653 100644 --- a/src/vs/workbench/parts/search/test/common/searchModel.test.ts +++ b/src/vs/workbench/parts/search/test/common/searchModel.test.ts @@ -8,7 +8,7 @@ import * as assert from 'assert'; import {Match, FileMatch, SearchResult} from 'vs/workbench/parts/search/common/searchModel'; import model = require('vs/editor/common/model/model'); import {Emitter} from 'vs/base/common/event'; -import {IModel, DefaultEndOfLine} from 'vs/editor/common/editorCommon'; +import {IModel} from 'vs/editor/common/editorCommon'; import URI from 'vs/base/common/uri'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {TestContextService} from 'vs/workbench/test/browser/servicesTestUtils'; @@ -43,7 +43,7 @@ suite('Search - Model', () => { oneModel.dispose(); }); - test('Line Match', function() { + test('Line Match', function () { let fileMatch = new FileMatch(null, toUri('folder\\file.txt')); let lineMatch = new Match(fileMatch, 'foo bar', 1, 0, 3); assert.equal(lineMatch.text(), 'foo bar'); @@ -53,7 +53,7 @@ suite('Search - Model', () => { assert.equal(lineMatch.range().endColumn, 4); }); - test('Line Match - Remove', function() { + test('Line Match - Remove', function () { let fileMatch = new FileMatch(null, toUri('folder\\file.txt')); let lineMatch = new Match(fileMatch, 'foo bar', 1, 0, 3); @@ -63,7 +63,7 @@ suite('Search - Model', () => { assert.equal(fileMatch.matches().length, 0); }); - test('File Match', function() { + test('File Match', function () { let fileMatch = new FileMatch(null, toUri('folder\\file.txt')); assert.equal(fileMatch.matches(), 0); @@ -76,7 +76,7 @@ suite('Search - Model', () => { assert.equal(fileMatch.name(), 'file.txt'); }); - test('Search Result', function() { + test('Search Result', function () { let searchResult = instantiation.createInstance(SearchResult, null); assert.equal(searchResult.isEmpty(), true); @@ -98,7 +98,7 @@ suite('Search - Model', () => { assert.equal(searchResult.matches().length, 10); }); - test('Alle Drei Zusammen', function() { + test('Alle Drei Zusammen', function () { let searchResult = instantiation.createInstance(SearchResult, null); let fileMatch = new FileMatch(searchResult, toUri('far\\boo')); diff --git a/src/vs/workbench/services/files/test/node/fileService.test.ts b/src/vs/workbench/services/files/test/node/fileService.test.ts index c2dbc56bfd6..6f120c9e197 100644 --- a/src/vs/workbench/services/files/test/node/fileService.test.ts +++ b/src/vs/workbench/services/files/test/node/fileService.test.ts @@ -25,7 +25,7 @@ suite('FileService', () => { let parentDir = path.join(os.tmpdir(), 'vsctests', 'service'); let testDir: string; - setup(function(done) { + setup(function (done) { let id = uuid.generateUuid(); testDir = path.join(parentDir, id); let sourceDir = require.toUrl('./fixtures/service'); @@ -43,7 +43,7 @@ suite('FileService', () => { extfs.del(parentDir, os.tmpdir(), () => { }, done); }); - test('resolveContents', function(done: () => void) { + test('resolveContents', function (done: () => void) { service.resolveContents([ uri.file(path.join(testDir, 'index.html')), uri.file(path.join(testDir, '404.html')), @@ -57,7 +57,7 @@ suite('FileService', () => { }); }); - test('createFile', function(done: () => void) { + test('createFile', function (done: () => void) { let contents = 'Hello World'; service.createFile(uri.file(path.join(testDir, 'test.txt')), contents).done(s => { assert.equal(s.name, 'test.txt'); @@ -68,7 +68,7 @@ suite('FileService', () => { }); }); - test('createFolder', function(done: () => void) { + test('createFolder', function (done: () => void) { service.resolveFile(uri.file(testDir)).done(parent => { return service.createFolder(uri.file(path.join(parent.resource.fsPath, 'newFolder'))).then(f => { assert.equal(f.name, 'newFolder'); @@ -79,7 +79,7 @@ suite('FileService', () => { }); }); - test('renameFile', function(done: () => void) { + test('renameFile', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.rename(source.resource, 'other.html').then(renamed => { assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -90,7 +90,7 @@ suite('FileService', () => { }); }); - test('renameFolder', function(done: () => void) { + test('renameFolder', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'deep'))).done(source => { return service.rename(source.resource, 'deeper').then(renamed => { assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -101,7 +101,7 @@ suite('FileService', () => { }); }); - test('renameFile - MIX CASE', function(done: () => void) { + test('renameFile - MIX CASE', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.rename(source.resource, 'INDEX.html').then(renamed => { assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -112,7 +112,7 @@ suite('FileService', () => { }); }); - test('moveFile', function(done: () => void) { + test('moveFile', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.moveFile(source.resource, uri.file(path.join(testDir, 'other.html'))).then(renamed => { assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -123,7 +123,7 @@ suite('FileService', () => { }); }); - test('move - FILE_MOVE_CONFLICT', function(done: () => void) { + test('move - FILE_MOVE_CONFLICT', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.moveFile(source.resource, uri.file(path.join(testDir, 'binary.txt'))).then(null, (e: IFileOperationResult) => { assert.equal(e.fileOperationResult, FileOperationResult.FILE_MOVE_CONFLICT); @@ -133,7 +133,7 @@ suite('FileService', () => { }); }); - test('moveFile - MIX CASE', function(done: () => void) { + test('moveFile - MIX CASE', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.moveFile(source.resource, uri.file(path.join(testDir, 'INDEX.html'))).then(renamed => { assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -144,7 +144,7 @@ suite('FileService', () => { }); }); - test('moveFile - overwrite folder with file', function(done: () => void) { + test('moveFile - overwrite folder with file', function (done: () => void) { service.resolveFile(uri.file(testDir)).done(parent => { return service.createFolder(uri.file(path.join(parent.resource.fsPath, 'conway.js'))).then(f => { return service.moveFile(uri.file(path.join(testDir, 'deep', 'conway.js')), f.resource, true).then(moved => { @@ -157,7 +157,7 @@ suite('FileService', () => { }); }); - test('copyFile', function(done: () => void) { + test('copyFile', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.copyFile(source.resource, uri.file(path.join(testDir, 'other.html'))).then(renamed => { assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -168,7 +168,7 @@ suite('FileService', () => { }); }); - test('copyFile - overwrite folder with file', function(done: () => void) { + test('copyFile - overwrite folder with file', function (done: () => void) { service.resolveFile(uri.file(testDir)).done(parent => { return service.createFolder(uri.file(path.join(parent.resource.fsPath, 'conway.js'))).then(f => { return service.copyFile(uri.file(path.join(testDir, 'deep', 'conway.js')), f.resource, true).then(copied => { @@ -181,7 +181,7 @@ suite('FileService', () => { }); }); - test('importFile', function(done: () => void) { + test('importFile', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'deep'))).done(target => { return service.importFile(uri.file(require.toUrl('./fixtures/service/index.html')), target.resource).then(res => { assert.equal(res.isNew, true); @@ -192,7 +192,7 @@ suite('FileService', () => { }); }); - test('importFile - MIX CASE', function(done: () => void) { + test('importFile - MIX CASE', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.rename(source.resource, 'CONWAY.js').then(renamed => { // index.html => CONWAY.js assert.equal(fs.existsSync(renamed.resource.fsPath), true); @@ -210,7 +210,7 @@ suite('FileService', () => { }); }); - test('importFile - overwrite folder with file', function(done: () => void) { + test('importFile - overwrite folder with file', function (done: () => void) { service.resolveFile(uri.file(testDir)).done(parent => { return service.createFolder(uri.file(path.join(parent.resource.fsPath, 'conway.js'))).then(f => { return service.importFile(uri.file(path.join(testDir, 'deep', 'conway.js')), uri.file(testDir)).then(res => { @@ -224,7 +224,7 @@ suite('FileService', () => { }); }); - test('importFile - same file', function(done: () => void) { + test('importFile - same file', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'index.html'))).done(source => { return service.importFile(source.resource, uri.file(path.dirname(source.resource.fsPath))).then(imported => { assert.equal(imported.stat.size, source.size); @@ -234,7 +234,7 @@ suite('FileService', () => { }); }); - test('deleteFile', function(done: () => void) { + test('deleteFile', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'deep', 'conway.js'))).done(source => { return service.del(source.resource).then(() => { assert.equal(fs.existsSync(source.resource.fsPath), false); @@ -244,7 +244,7 @@ suite('FileService', () => { }); }); - test('deleteFolder', function(done: () => void) { + test('deleteFolder', function (done: () => void) { service.resolveFile(uri.file(path.join(testDir, 'deep'))).done(source => { return service.del(source.resource).then(() => { assert.equal(fs.existsSync(source.resource.fsPath), false); @@ -254,7 +254,7 @@ suite('FileService', () => { }); }); - test('resolveFile', function(done: () => void) { + test('resolveFile', function (done: () => void) { service.resolveFile(uri.file(testDir), { resolveTo: [uri.file(path.join(testDir, 'deep'))] }).done(r => { assert.equal(r.children.length, 6); @@ -265,7 +265,7 @@ suite('FileService', () => { }); }); - test('updateContent', function(done: () => void) { + test('updateContent', function (done: () => void) { let resource = uri.file(path.join(testDir, 'small.txt')); service.resolveContent(resource).done(c => { @@ -281,7 +281,7 @@ suite('FileService', () => { }); }); - test('updateContent - use encoding (UTF 16 BE)', function(done: () => void) { + test('updateContent - use encoding (UTF 16 BE)', function (done: () => void) { let resource = uri.file(path.join(testDir, 'small.txt')); let encoding = 'utf16be'; @@ -302,7 +302,7 @@ suite('FileService', () => { }); }); - test('updateContent - encoding preserved (UTF 16 LE)', function(done: () => void) { + test('updateContent - encoding preserved (UTF 16 LE)', function (done: () => void) { let encoding = 'utf16le'; let resource = uri.file(path.join(testDir, 'some_utf16le.css')); @@ -325,7 +325,7 @@ suite('FileService', () => { }); }); - test('resolveContent - FILE_IS_BINARY', function(done: () => void) { + test('resolveContent - FILE_IS_BINARY', function (done: () => void) { let resource = uri.file(path.join(testDir, 'binary.txt')); service.resolveContent(resource, { acceptTextOnly: true }).done(null, (e: IFileOperationResult) => { @@ -339,7 +339,7 @@ suite('FileService', () => { }); }); - test('resolveContent - FILE_IS_DIRECTORY', function(done: () => void) { + test('resolveContent - FILE_IS_DIRECTORY', function (done: () => void) { let resource = uri.file(path.join(testDir, 'deep')); service.resolveContent(resource).done(null, (e: IFileOperationResult) => { @@ -349,7 +349,7 @@ suite('FileService', () => { }); }); - test('resolveContent - FILE_NOT_FOUND', function(done: () => void) { + test('resolveContent - FILE_NOT_FOUND', function (done: () => void) { let resource = uri.file(path.join(testDir, '404.html')); service.resolveContent(resource).done(null, (e: IFileOperationResult) => { @@ -359,7 +359,7 @@ suite('FileService', () => { }); }); - test('resolveContent - FILE_NOT_MODIFIED_SINCE', function(done: () => void) { + test('resolveContent - FILE_NOT_MODIFIED_SINCE', function (done: () => void) { let resource = uri.file(path.join(testDir, 'index.html')); service.resolveContent(resource).done(c => { @@ -371,7 +371,7 @@ suite('FileService', () => { }); }); - test('resolveContent - FILE_MODIFIED_SINCE', function(done: () => void) { + test('resolveContent - FILE_MODIFIED_SINCE', function (done: () => void) { let resource = uri.file(path.join(testDir, 'index.html')); service.resolveContent(resource).done(c => { @@ -385,7 +385,7 @@ suite('FileService', () => { }); }); - test('resolveContent - encoding picked up', function(done: () => void) { + test('resolveContent - encoding picked up', function (done: () => void) { let resource = uri.file(path.join(testDir, 'index.html')); let encoding = 'windows1252'; @@ -396,7 +396,7 @@ suite('FileService', () => { }); }); - test('resolveContent - user overrides BOM', function(done: () => void) { + test('resolveContent - user overrides BOM', function (done: () => void) { let resource = uri.file(path.join(testDir, 'some_utf16le.css')); service.resolveContent(resource, { encoding: 'windows1252' }).done(c => { @@ -406,7 +406,7 @@ suite('FileService', () => { }); }); - test('resolveContent - BOM removed', function(done: () => void) { + test('resolveContent - BOM removed', function (done: () => void) { let resource = uri.file(path.join(testDir, 'some_utf8_bom.txt')); service.resolveContent(resource).done(c => { @@ -416,7 +416,7 @@ suite('FileService', () => { }); }); - test('resolveContent - invalid encoding', function(done: () => void) { + test('resolveContent - invalid encoding', function (done: () => void) { let resource = uri.file(path.join(testDir, 'index.html')); service.resolveContent(resource, { encoding: 'superduper' }).done(c => { @@ -426,7 +426,7 @@ suite('FileService', () => { }); }); - test('watchFileChanges', function(done: () => void) { + test('watchFileChanges', function (done: () => void) { let toWatch = uri.file(path.join(testDir, 'index.html')); service.watchFileChanges(toWatch); @@ -443,7 +443,7 @@ suite('FileService', () => { }, 100); }); - test('options - encoding', function(done: () => void) { + test('options - encoding', function (done: () => void) { // setup let _id = uuid.generateUuid(); @@ -477,7 +477,7 @@ suite('FileService', () => { }); }); - test('UTF 8 BOMs', function(done: () => void) { + test('UTF 8 BOMs', function (done: () => void) { // setup let _id = uuid.generateUuid(); diff --git a/src/vs/workbench/services/files/test/node/resolver.test.ts b/src/vs/workbench/services/files/test/node/resolver.test.ts index 6835bb3954e..56a6729adc7 100644 --- a/src/vs/workbench/services/files/test/node/resolver.test.ts +++ b/src/vs/workbench/services/files/test/node/resolver.test.ts @@ -31,7 +31,7 @@ function toResource(relativePath: string): uri { suite('Stat Resolver', () => { - test('resolve file', function(done: () => void) { + test('resolve file', function (done: () => void) { let resolver = create('/index.html'); resolver.resolve(null).then(result => { assert.ok(!result.isDirectory); @@ -43,10 +43,10 @@ suite('Stat Resolver', () => { assert.ok(result.isDirectory); }); }) - .done(() => done(), done); + .done(() => done(), done); }); - test('resolve directory', function(done: () => void) { + test('resolve directory', function (done: () => void) { let testsElements = ['examples', 'other', 'index.html', 'site.css']; let resolver = create('/'); @@ -80,10 +80,10 @@ suite('Stat Resolver', () => { } }); }) - .done(() => done(), done); + .done(() => done(), done); }); - test('resolve directory - resolveTo single directory', function(done: () => void) { + test('resolve directory - resolveTo single directory', function (done: () => void) { let resolver = create('/'); resolver.resolve({ resolveTo: [toResource('other/deep')] }).then(result => { @@ -104,10 +104,10 @@ suite('Stat Resolver', () => { assert.ok(deep.hasChildren); assert.equal(deep.children.length, 4); }) - .done(() => done(), done); + .done(() => done(), done); }); - test('resolve directory - resolveTo single directory - mixed casing', function(done: () => void) { + test('resolve directory - resolveTo single directory - mixed casing', function (done: () => void) { let resolver = create('/'); resolver.resolve({ resolveTo: [toResource('other/Deep')] }).then(result => { @@ -134,10 +134,10 @@ suite('Stat Resolver', () => { assert.equal(deep.children.length, 4); } }) - .done(() => done(), done); + .done(() => done(), done); }); - test('resolve directory - resolveTo multiple directories', function(done: () => void) { + test('resolve directory - resolveTo multiple directories', function (done: () => void) { let resolver = create('/'); resolver.resolve({ resolveTo: [toResource('other/deep'), toResource('examples')] }).then(result => { @@ -163,10 +163,10 @@ suite('Stat Resolver', () => { assert.ok(examples.hasChildren); assert.equal(examples.children.length, 4); }) - .done(() => done(), done); + .done(() => done(), done); }); - test('resolve directory - resolveSingleChildFolders', function(done: () => void) { + test('resolve directory - resolveSingleChildFolders', function (done: () => void) { let resolver = create('/other'); resolver.resolve({ resolveSingleChildDescendants: true }).then(result => { @@ -183,6 +183,6 @@ suite('Stat Resolver', () => { assert.ok(deep.hasChildren); assert.equal(deep.children.length, 4); }) - .done(() => done(), done); + .done(() => done(), done); }); }); \ No newline at end of file diff --git a/src/vs/workbench/services/files/test/node/watcher.test.ts b/src/vs/workbench/services/files/test/node/watcher.test.ts index be528a69bc0..06ad72f89c6 100644 --- a/src/vs/workbench/services/files/test/node/watcher.test.ts +++ b/src/vs/workbench/services/files/test/node/watcher.test.ts @@ -5,17 +5,11 @@ 'use strict'; -import fs = require('fs'); -import path = require('path'); -import os = require('os'); import assert = require('assert'); -import uuid = require('vs/base/common/uuid'); import platform = require('vs/base/common/platform'); import {FileChangeType, EventType, FileChangesEvent} from 'vs/platform/files/common/files'; import uri from 'vs/base/common/uri'; -import extfs = require('vs/base/node/extfs'); -import eventEmitter = require('vs/base/common/eventEmitter'); import utils = require('vs/workbench/services/files/test/node/utils'); import {IRawFileChange, toFileChangesEvent, normalize} from 'vs/workbench/services/files/node/watcher/common'; import {IEventService} from 'vs/platform/event/common/event'; @@ -51,7 +45,7 @@ enum Path { suite('Watcher', () => { - test('watching - simple add/update/delete', function(done: () => void) { + test('watching - simple add/update/delete', function (done: () => void) { var events = new utils.TestEventService(); var watch = new TestFileWatcher(events); @@ -80,7 +74,7 @@ suite('Watcher', () => { let pathSpecs = platform.isWindows ? [Path.WINDOWS, Path.UNC] : [Path.UNIX]; pathSpecs.forEach((p) => { - test('watching - delete only reported for top level folder (' + p + ')', function(done: () => void) { + test('watching - delete only reported for top level folder (' + p + ')', function (done: () => void) { var events = new utils.TestEventService(); var watch = new TestFileWatcher(events); @@ -122,7 +116,7 @@ suite('Watcher', () => { }); }); - test('watching - event normalization: ignore CREATE followed by DELETE', function(done: () => void) { + test('watching - event normalization: ignore CREATE followed by DELETE', function (done: () => void) { var events = new utils.TestEventService(); var watch = new TestFileWatcher(events); @@ -148,7 +142,7 @@ suite('Watcher', () => { watch.report(raw); }); - test('watching - event normalization: flatten DELETE followed by CREATE into CHANGE', function(done: () => void) { + test('watching - event normalization: flatten DELETE followed by CREATE into CHANGE', function (done: () => void) { var events = new utils.TestEventService(); var watch = new TestFileWatcher(events); @@ -175,7 +169,7 @@ suite('Watcher', () => { watch.report(raw); }); - test('watching - event normalization: ignore UPDATE when CREATE received', function(done: () => void) { + test('watching - event normalization: ignore UPDATE when CREATE received', function (done: () => void) { var events = new utils.TestEventService(); var watch = new TestFileWatcher(events); @@ -203,7 +197,7 @@ suite('Watcher', () => { watch.report(raw); }); - test('watching - event normalization: apply DELETE', function(done: () => void) { + test('watching - event normalization: apply DELETE', function (done: () => void) { var events = new utils.TestEventService(); var watch = new TestFileWatcher(events); diff --git a/src/vs/workbench/services/search/test/node/search.test.ts b/src/vs/workbench/services/search/test/node/search.test.ts index 2b3a2b5598a..f3fc9613a4a 100644 --- a/src/vs/workbench/services/search/test/node/search.test.ts +++ b/src/vs/workbench/services/search/test/node/search.test.ts @@ -8,7 +8,6 @@ import path = require('path'); import assert = require('assert'); -import uri from 'vs/base/common/uri'; import {join, normalize} from 'vs/base/common/paths'; import {LineMatch} from 'vs/platform/search/common/search'; @@ -34,7 +33,7 @@ function rootfolders() { suite('Search', () => { - test('Files: *.js', function(done: () => void) { + test('Files: *.js', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.js' @@ -52,7 +51,7 @@ suite('Search', () => { }); }); - test('Files: examples/com*', function(done: () => void) { + test('Files: examples/com*', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: normalize(join('examples', 'com*'), true) @@ -70,7 +69,7 @@ suite('Search', () => { }); }); - test('Files: examples (fuzzy)', function(done: () => void) { + test('Files: examples (fuzzy)', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: 'xl' @@ -88,7 +87,7 @@ suite('Search', () => { }); }); - test('Files: NPE (CamelCase)', function(done: () => void) { + test('Files: NPE (CamelCase)', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: 'NullPE' @@ -106,7 +105,7 @@ suite('Search', () => { }); }); - test('Files: *.*', function(done: () => void) { + test('Files: *.*', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.*' @@ -124,7 +123,7 @@ suite('Search', () => { }); }); - test('Files: *.as', function(done: () => void) { + test('Files: *.as', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.as' @@ -142,11 +141,11 @@ suite('Search', () => { }); }); - test('Files: *.* without derived', function(done: () => void) { + test('Files: *.* without derived', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: 'site.*', - excludePattern: { "**/*.css": { "when": "$(basename).less" } } + excludePattern: { '**/*.css': { 'when': '$(basename).less' } } }); let count = 0; @@ -164,11 +163,11 @@ suite('Search', () => { }); }); - test('Files: *.* exclude folder without wildcard', function(done: () => void) { + test('Files: *.* exclude folder without wildcard', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.*', - excludePattern: { "examples": true } + excludePattern: { 'examples': true } }); let count = 0; @@ -183,11 +182,11 @@ suite('Search', () => { }); }); - test('Files: *.* exclude folder with leading wildcard', function(done: () => void) { + test('Files: *.* exclude folder with leading wildcard', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.*', - excludePattern: { "**/examples": true } + excludePattern: { '**/examples': true } }); let count = 0; @@ -202,11 +201,11 @@ suite('Search', () => { }); }); - test('Files: *.* exclude folder with trailing wildcard', function(done: () => void) { + test('Files: *.* exclude folder with trailing wildcard', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.*', - excludePattern: { "examples/**": true } + excludePattern: { 'examples/**': true } }); let count = 0; @@ -221,11 +220,11 @@ suite('Search', () => { }); }); - test('Files: *.* exclude with unicode', function(done: () => void) { + test('Files: *.* exclude with unicode', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '*.*', - excludePattern: { "**/üm laut汉语": true } + excludePattern: { '**/üm laut汉语': true } }); let count = 0; @@ -240,7 +239,7 @@ suite('Search', () => { }); }); - test('Files: Unicode and Spaces', function(done: () => void) { + test('Files: Unicode and Spaces', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: '汉语' @@ -261,7 +260,7 @@ suite('Search', () => { }); }); - test('Files: no results', function(done: () => void) { + test('Files: no results', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: 'nofilematch' @@ -279,11 +278,11 @@ suite('Search', () => { }); }); - test('Files: absolute path to file ignores excludes', function(done: () => void) { + test('Files: absolute path to file ignores excludes', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: path.normalize(path.join(require.toUrl('./fixtures'), 'site.css')), - excludePattern: { "**/*.css": true } + excludePattern: { '**/*.css': true } }); let count = 0; @@ -301,11 +300,11 @@ suite('Search', () => { }); }); - test('Files: relative path to file ignores excludes', function(done: () => void) { + test('Files: relative path to file ignores excludes', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: rootfolders(), filePattern: path.normalize(path.join('examples', 'company.js')), - excludePattern: { "**/*.js": true } + excludePattern: { '**/*.js': true } }); let count = 0; @@ -323,7 +322,7 @@ suite('Search', () => { }); }); - test('Files: extraFiles only', function(done: () => void) { + test('Files: extraFiles only', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: [], extraFiles: [ @@ -349,7 +348,7 @@ suite('Search', () => { }); }); - test('Files: extraFiles only (with include)', function(done: () => void) { + test('Files: extraFiles only (with include)', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: [], extraFiles: [ @@ -376,7 +375,7 @@ suite('Search', () => { }); }); - test('Files: extraFiles only (with exclude)', function(done: () => void) { + test('Files: extraFiles only (with exclude)', function (done: () => void) { let engine = new FileSearchEngine({ rootFolders: [], extraFiles: [ @@ -400,7 +399,7 @@ suite('Search', () => { }); }); - test('Text: GameOfLife', function(done: () => void) { + test('Text: GameOfLife', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), @@ -421,7 +420,7 @@ suite('Search', () => { }); }); - test('Text: GameOfLife (RegExp)', function(done: () => void) { + test('Text: GameOfLife (RegExp)', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), @@ -442,7 +441,7 @@ suite('Search', () => { }); }); - test('Text: GameOfLife (Word Match, Case Sensitive)', function(done: () => void) { + test('Text: GameOfLife (Word Match, Case Sensitive)', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), @@ -463,7 +462,7 @@ suite('Search', () => { }); }); - test('Text: Helvetica (UTF 16)', function(done: () => void) { + test('Text: Helvetica (UTF 16)', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), @@ -484,7 +483,7 @@ suite('Search', () => { }); }); - test('Text: e', function(done: () => void) { + test('Text: e', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), @@ -505,7 +504,7 @@ suite('Search', () => { }); }); - test('Text: e (with excludes)', function(done: () => void) { + test('Text: e (with excludes)', function (done: () => void) { let c = 0; let config: any = { rootFolders: rootfolders(), @@ -527,7 +526,7 @@ suite('Search', () => { }); }); - test('Text: e (with includes)', function(done: () => void) { + test('Text: e (with includes)', function (done: () => void) { let c = 0; let config: any = { rootFolders: rootfolders(), @@ -549,7 +548,7 @@ suite('Search', () => { }); }); - test('Text: e (with includes and exclude)', function(done: () => void) { + test('Text: e (with includes and exclude)', function (done: () => void) { let c = 0; let config: any = { rootFolders: rootfolders(), @@ -572,7 +571,7 @@ suite('Search', () => { }); }); - test('Text: a (capped)', function(done: () => void) { + test('Text: a (capped)', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), @@ -594,7 +593,7 @@ suite('Search', () => { }); }); - test('Text: a (no results)', function(done: () => void) { + test('Text: a (no results)', function (done: () => void) { let c = 0; let config = { rootFolders: rootfolders(), diff --git a/src/vs/workbench/test/browser/actionRegistry.test.ts b/src/vs/workbench/test/browser/actionRegistry.test.ts index eeeac517c62..cad0299c847 100644 --- a/src/vs/workbench/test/browser/actionRegistry.test.ts +++ b/src/vs/workbench/test/browser/actionRegistry.test.ts @@ -10,7 +10,7 @@ import * as Platform from 'vs/platform/platform'; import {SyncActionDescriptor} from 'vs/platform/actions/common/actions'; import {Separator} from 'vs/base/browser/ui/actionbar/actionbar'; import {Extensions} from 'vs/workbench/common/actionRegistry'; -import {Extensions as ActionBarExtensions, prepareActions} from 'vs/workbench/browser/actionBarRegistry'; +import {prepareActions} from 'vs/workbench/browser/actionBarRegistry'; import {Action} from 'vs/base/common/actions'; class MyClass extends Action { @@ -19,12 +19,12 @@ class MyClass extends Action { } } -suite("Workbench Action Registry", () => { +suite('Workbench Action Registry', () => { - test("Workbench Action Registration", function() { + test('Workbench Action Registration', function () { let Registry = Platform.Registry.as(Extensions.WorkbenchActions); - let d = new SyncActionDescriptor(MyClass, "id", "name"); + let d = new SyncActionDescriptor(MyClass, 'id', 'name'); let oldActions = Registry.getWorkbenchActions().slice(0); let oldCount = Registry.getWorkbenchActions().length; @@ -33,12 +33,12 @@ suite("Workbench Action Registry", () => { Registry.registerWorkbenchAction(d); assert.equal(Registry.getWorkbenchActions().length, 1 + oldCount); - assert.strictEqual(d, Registry.getWorkbenchAction("id")); + assert.strictEqual(d, Registry.getWorkbenchAction('id')); Registry.setWorkbenchActions(oldActions); }); - test("Workbench Action Bar prepareActions()", function() { + test('Workbench Action Bar prepareActions()', function () { let a1 = new Separator(); let a2 = new Separator(); let a3 = new Action('a3'); diff --git a/src/vs/workbench/test/browser/events.test.ts b/src/vs/workbench/test/browser/events.test.ts index 3ba093efafe..bd03709d18f 100644 --- a/src/vs/workbench/test/browser/events.test.ts +++ b/src/vs/workbench/test/browser/events.test.ts @@ -14,9 +14,9 @@ import {CommandEvent, CompositeEvent, EditorEvent} from 'vs/workbench/common/eve let FileChangesEvent = Files.FileChangesEvent; -suite("Workbench Events", () => { +suite('Workbench Events', () => { - test("Base Event", function() { + test('Base Event', function () { let origEvent: any = {}; let event = new Event(origEvent); @@ -24,8 +24,8 @@ suite("Workbench Events", () => { assert(event.time); }); - test("Command Event", function() { - let actionId = "foo.bar"; + test('Command Event', function () { + let actionId = 'foo.bar'; let origEvent = {}; let event = new CommandEvent(actionId, origEvent); @@ -34,12 +34,12 @@ suite("Workbench Events", () => { assert(event.time); }); - test("Editor Change Event", function() { + test('Editor Change Event', function () { let editor: any = {}; let origEvent: any = {}; let input: any = {}; let options: any = {}; - let id = "foo.bar"; + let id = 'foo.bar'; let event = new EditorEvent(editor, id, input, options, 0, origEvent); assert.strictEqual(event.editor, editor); @@ -50,11 +50,11 @@ suite("Workbench Events", () => { assert(event.time); }); - test("Property Change Event", function() { - let key = "foo"; + test('Property Change Event', function () { + let key = 'foo'; let origEvent: any = {}; - let oldValue = { foo: "bar" }; - let newValue = { foo: "foo" }; + let oldValue = { foo: 'bar' }; + let newValue = { foo: 'foo' }; let event = new PropertyChangeEvent(key, oldValue, newValue, origEvent); assert.strictEqual(event.originalEvent, origEvent); @@ -64,7 +64,7 @@ suite("Workbench Events", () => { assert(event.time); }); - test("File Changes Event", function() { + test('File Changes Event', function () { let changes = [ { resource: URI.file(Paths.join('C:\\', '/foo/updated.txt')), type: 0 }, { resource: URI.file(Paths.join('C:\\', '/foo/otherupdated.txt')), type: 0 }, @@ -98,8 +98,8 @@ suite("Workbench Events", () => { return URI.file(Paths.join('C:\\', path)); } - test("Composite Event", function() { - let compositeId = "foo.bar"; + test('Composite Event', function () { + let compositeId = 'foo.bar'; let origEvent = {}; let event = new CompositeEvent(compositeId, origEvent); diff --git a/src/vs/workbench/test/browser/memento.test.ts b/src/vs/workbench/test/browser/memento.test.ts index e88f2edfad7..654e3d47a35 100644 --- a/src/vs/workbench/test/browser/memento.test.ts +++ b/src/vs/workbench/test/browser/memento.test.ts @@ -12,7 +12,7 @@ import * as TestUtils from 'vs/workbench/test/browser/servicesTestUtils'; import {Memento, Scope} from 'vs/workbench/common/memento'; import {Storage, InMemoryLocalStorage} from 'vs/workbench/common/storage'; -suite("Workbench Memento", () => { +suite('Workbench Memento', () => { let context; let storage; @@ -21,8 +21,8 @@ suite("Workbench Memento", () => { storage = new Storage(context, new InMemoryLocalStorage()); }); - test("Loading and Saving Memento with Scopes", () => { - let myMemento = new Memento("memento.test"); + test('Loading and Saving Memento with Scopes', () => { + let myMemento = new Memento('memento.test'); // Global let memento = myMemento.getMemento(storage); @@ -33,7 +33,7 @@ suite("Workbench Memento", () => { // Workspace memento = myMemento.getMemento(storage, Scope.WORKSPACE); assert(memento); - memento.foo = "Hello World"; + memento.foo = 'Hello World'; myMemento.saveMemento(); @@ -45,12 +45,12 @@ suite("Workbench Memento", () => { // Workspace memento = myMemento.getMemento(storage, Scope.WORKSPACE); - assert.deepEqual(memento, { foo: "Hello World" }); + assert.deepEqual(memento, { foo: 'Hello World' }); // Assert the Mementos are stored properly in storage assert.deepEqual(JSON.parse(storage.get('memento/memento.test')), { foo: [1, 2, 3] }); - assert.deepEqual(JSON.parse(storage.get('memento/memento.test', StorageScope.WORKSPACE)), { foo: "Hello World" }); + assert.deepEqual(JSON.parse(storage.get('memento/memento.test', StorageScope.WORKSPACE)), { foo: 'Hello World' }); // Delete Global memento = myMemento.getMemento(storage, context); @@ -71,114 +71,114 @@ suite("Workbench Memento", () => { assert.deepEqual(memento, {}); // Assert the Mementos are also removed from storage - assert.strictEqual(storage.get("memento/memento.test", Scope.GLOBAL, null), null); + assert.strictEqual(storage.get('memento/memento.test', Scope.GLOBAL, null), null); - assert.strictEqual(storage.get("memento/memento.test", Scope.WORKSPACE, null), null); + assert.strictEqual(storage.get('memento/memento.test', Scope.WORKSPACE, null), null); }); - test("Save and Load", () => { - let myMemento = new Memento("memento.test"); + test('Save and Load', () => { + let myMemento = new Memento('memento.test'); // Global - let memento = myMemento.getMemento(storage, context) + let memento = myMemento.getMemento(storage, context); memento.foo = [1, 2, 3]; // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) + memento = myMemento.getMemento(storage, Scope.WORKSPACE); assert(memento); - memento.foo = "Hello World"; + memento.foo = 'Hello World'; myMemento.saveMemento(); // Global - memento = myMemento.getMemento(storage, context) + memento = myMemento.getMemento(storage, context); assert.deepEqual(memento, { foo: [1, 2, 3] }); let globalMemento = myMemento.getMemento(storage, Scope.GLOBAL); assert.deepEqual(globalMemento, memento); // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) - assert.deepEqual(memento, { foo: "Hello World" }); + memento = myMemento.getMemento(storage, Scope.WORKSPACE); + assert.deepEqual(memento, { foo: 'Hello World' }); // Global - memento = myMemento.getMemento(storage, context) + memento = myMemento.getMemento(storage, context); memento.foo = [4, 5, 6]; // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) + memento = myMemento.getMemento(storage, Scope.WORKSPACE); assert(memento); - memento.foo = "World Hello"; + memento.foo = 'World Hello'; myMemento.saveMemento(); // Global - memento = myMemento.getMemento(storage, context) + memento = myMemento.getMemento(storage, context); assert.deepEqual(memento, { foo: [4, 5, 6] }); globalMemento = myMemento.getMemento(storage, Scope.GLOBAL); assert.deepEqual(globalMemento, memento); // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) - assert.deepEqual(memento, { foo: "World Hello" }); + memento = myMemento.getMemento(storage, Scope.WORKSPACE); + assert.deepEqual(memento, { foo: 'World Hello' }); // Delete Global - memento = myMemento.getMemento(storage, context) + memento = myMemento.getMemento(storage, context); delete memento.foo; // Delete Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) + memento = myMemento.getMemento(storage, Scope.WORKSPACE); delete memento.foo; myMemento.saveMemento(); // Global - memento = myMemento.getMemento(storage, context) + memento = myMemento.getMemento(storage, context); assert.deepEqual(memento, {}); // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) + memento = myMemento.getMemento(storage, Scope.WORKSPACE); assert.deepEqual(memento, {}); }); - test("Save and Load - 2 Components with same id", () => { - let myMemento = new Memento("memento.test"); - let myMemento2 = new Memento("memento.test"); + test('Save and Load - 2 Components with same id', () => { + let myMemento = new Memento('memento.test'); + let myMemento2 = new Memento('memento.test'); // Global - let memento = myMemento.getMemento(storage, context) + let memento = myMemento.getMemento(storage, context); memento.foo = [1, 2, 3]; - memento = myMemento2.getMemento(storage, context) + memento = myMemento2.getMemento(storage, context); memento.bar = [1, 2, 3]; // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) + memento = myMemento.getMemento(storage, Scope.WORKSPACE); assert(memento); - memento.foo = "Hello World"; + memento.foo = 'Hello World'; - memento = myMemento2.getMemento(storage, Scope.WORKSPACE) + memento = myMemento2.getMemento(storage, Scope.WORKSPACE); assert(memento); - memento.bar = "Hello World"; + memento.bar = 'Hello World'; myMemento.saveMemento(); myMemento2.saveMemento(); // Global - memento = myMemento.getMemento(storage, context) + memento = myMemento.getMemento(storage, context); assert.deepEqual(memento, { foo: [1, 2, 3], bar: [1, 2, 3] }); let globalMemento = myMemento.getMemento(storage, Scope.GLOBAL); assert.deepEqual(globalMemento, memento); - memento = myMemento2.getMemento(storage, context) + memento = myMemento2.getMemento(storage, context); assert.deepEqual(memento, { foo: [1, 2, 3], bar: [1, 2, 3] }); globalMemento = myMemento2.getMemento(storage, Scope.GLOBAL); assert.deepEqual(globalMemento, memento); // Workspace - memento = myMemento.getMemento(storage, Scope.WORKSPACE) - assert.deepEqual(memento, { foo: "Hello World", bar: "Hello World" }); + memento = myMemento.getMemento(storage, Scope.WORKSPACE); + assert.deepEqual(memento, { foo: 'Hello World', bar: 'Hello World' }); - memento = myMemento2.getMemento(storage, Scope.WORKSPACE) - assert.deepEqual(memento, { foo: "Hello World", bar: "Hello World" }); + memento = myMemento2.getMemento(storage, Scope.WORKSPACE); + assert.deepEqual(memento, { foo: 'Hello World', bar: 'Hello World' }); }); }); \ No newline at end of file diff --git a/src/vs/workbench/test/browser/part.test.ts b/src/vs/workbench/test/browser/part.test.ts index 9652a06f308..b7aaac60e91 100644 --- a/src/vs/workbench/test/browser/part.test.ts +++ b/src/vs/workbench/test/browser/part.test.ts @@ -6,7 +6,7 @@ 'use strict'; import * as assert from 'assert'; -import {Build, Dimension, Builder} from 'vs/base/browser/builder'; +import {Build, Builder} from 'vs/base/browser/builder'; import {Part} from 'vs/workbench/browser/part'; import * as Types from 'vs/base/common/types'; import * as TestUtils from 'vs/workbench/test/browser/servicesTestUtils'; @@ -46,8 +46,8 @@ class MyPart2 extends Part { public createTitleArea(parent: Builder): Builder { return parent.div(function(div) { div.span({ - id: "myPart.title", - innerHtml: "Title" + id: 'myPart.title', + innerHtml: 'Title' }); }); } @@ -55,8 +55,8 @@ class MyPart2 extends Part { public createContentArea(parent: Builder): Builder { return parent.div(function(div) { div.span({ - id: "myPart.content", - innerHtml: "Content" + id: 'myPart.content', + innerHtml: 'Content' }); }); } @@ -64,8 +64,8 @@ class MyPart2 extends Part { public createStatusArea(parent: Builder): Builder { return parent.div(function(div) { div.span({ - id: "myPart.status", - innerHtml: "Status" + id: 'myPart.status', + innerHtml: 'Status' }); }); } @@ -84,8 +84,8 @@ class MyPart3 extends Part { public createContentArea(parent: Builder): Builder { return parent.div(function(div) { div.span({ - id: "myPart.content", - innerHtml: "Content" + id: 'myPart.content', + innerHtml: 'Content' }); }); } @@ -95,10 +95,10 @@ class MyPart3 extends Part { } } -suite("Workbench Part", () => { +suite('Workbench Part', () => { let fixture: HTMLElement; let fixtureId = 'workbench-part-fixture'; - let context: IWorkspaceContextService + let context: IWorkspaceContextService; let storage: IStorageService; setup(() => { @@ -113,20 +113,20 @@ suite("Workbench Part", () => { document.body.removeChild(fixture); }); - test("Creation", function() { + test('Creation', function() { let b = Build.withElementById(fixtureId); b.div().hide(); let part = new MyPart(b); part.create(b); - assert.strictEqual(part.getId(), "myPart"); + assert.strictEqual(part.getId(), 'myPart'); assert.strictEqual(part.getContainer(), b); // Memento let memento = part.getMemento(storage); assert(memento); - memento.foo = "bar"; + memento.foo = 'bar'; memento.bar = [1, 2, 3]; part.shutdown(); @@ -136,7 +136,7 @@ suite("Workbench Part", () => { memento = part.getMemento(storage); assert(memento); - assert.strictEqual(memento.foo, "bar"); + assert.strictEqual(memento.foo, 'bar'); assert.strictEqual(memento.bar.length, 3); // Empty Memento stores empty object @@ -150,27 +150,27 @@ suite("Workbench Part", () => { assert.strictEqual(Types.isEmptyObject(memento), true); }); - test("Part Layout with Title, Content and Status", function() { + test('Part Layout with Title, Content and Status', function() { let b = Build.withElementById(fixtureId); b.div().hide(); let part = new MyPart2(); part.create(b); - assert(Build.withElementById("myPart.title")); - assert(Build.withElementById("myPart.content")); - assert(Build.withElementById("myPart.status")); + assert(Build.withElementById('myPart.title')); + assert(Build.withElementById('myPart.content')); + assert(Build.withElementById('myPart.status')); }); - test("Part Layout with Content only", function() { + test('Part Layout with Content only', function() { let b = Build.withElementById(fixtureId); b.div().hide(); let part = new MyPart3(); part.create(b); - assert(!Build.withElementById("myPart.title")); - assert(Build.withElementById("myPart.content")); - assert(!Build.withElementById("myPart.status")); + assert(!Build.withElementById('myPart.title')); + assert(Build.withElementById('myPart.content')); + assert(!Build.withElementById('myPart.status')); }); }); \ No newline at end of file diff --git a/src/vs/workbench/test/browser/parts/editor/baseEditor.test.ts b/src/vs/workbench/test/browser/parts/editor/baseEditor.test.ts index 2a518c5c835..b519c68fdf8 100644 --- a/src/vs/workbench/test/browser/parts/editor/baseEditor.test.ts +++ b/src/vs/workbench/test/browser/parts/editor/baseEditor.test.ts @@ -25,7 +25,7 @@ export class MyEditor extends BaseEditor { } getId(): string { - return "myEditor"; + return 'myEditor'; } public layout(): void { @@ -44,7 +44,7 @@ export class MyOtherEditor extends BaseEditor { } getId(): string { - return "myOtherEditor"; + return 'myOtherEditor'; } public layout(): void { @@ -115,8 +115,8 @@ class MyEditorInputActionContributor extends EditorInputActionContributor { getActionsForEditorInput(context) { return [ - new MyAction2("id1", "label1"), - new MyAction2("id2", "label2") + new MyAction2('id1', 'label1'), + new MyAction2('id2', 'label2') ]; } } @@ -124,28 +124,28 @@ class MyEditorInputActionContributor extends EditorInputActionContributor { class MyClass { } class MyOtherClass { } -suite("Workbench BaseEditor", () => { +suite('Workbench BaseEditor', () => { - test("BaseEditor API", function(done) { - let e = new MyEditor("id", NullTelemetryService); + test('BaseEditor API', function (done) { + let e = new MyEditor('id', NullTelemetryService); let input = new MyOtherInput(); let options = new EditorOptions(); assert(!e.isVisible()); assert(!e.getInput()); assert(!e.getOptions()); - e.setInput(input, options).then(function() { + e.setInput(input, options).then(function () { assert.strictEqual(input, e.getInput()); assert.strictEqual(options, e.getOptions()); - return e.setVisible(true).then(function() { + return e.setVisible(true).then(function () { assert(e.isVisible()); - input.addListener("dispose", function() { + input.addListener('dispose', function () { assert(false); }); e.dispose(); e.clearInput(); - return e.setVisible(false).then(function() { + return e.setVisible(false).then(function () { assert(!e.isVisible()); assert(!e.getInput()); assert(!e.getOptions()); @@ -155,15 +155,15 @@ suite("Workbench BaseEditor", () => { }).done(() => done()); }); - test("EditorDescriptor", function() { - let d = new EditorDescriptor("id", "name", "vs/workbench/test/browser/parts/editor/baseEditor.test", "MyClass"); - assert.strictEqual(d.getId(), "id"); - assert.strictEqual(d.getName(), "name"); + test('EditorDescriptor', function () { + let d = new EditorDescriptor('id', 'name', 'vs/workbench/test/browser/parts/editor/baseEditor.test', 'MyClass'); + assert.strictEqual(d.getId(), 'id'); + assert.strictEqual(d.getName(), 'name'); }); - test("Editor Registration", function() { - let d1 = new EditorDescriptor("id1", "name", "vs/workbench/test/browser/parts/editor/baseEditor.test", "MyClass"); - let d2 = new EditorDescriptor("id2", "name", "vs/workbench/test/browser/parts/editor/baseEditor.test", "MyOtherClass"); + test('Editor Registration', function () { + let d1 = new EditorDescriptor('id1', 'name', 'vs/workbench/test/browser/parts/editor/baseEditor.test', 'MyClass'); + let d2 = new EditorDescriptor('id2', 'name', 'vs/workbench/test/browser/parts/editor/baseEditor.test', 'MyOtherClass'); let oldEditorsCnt = EditorRegistry.getEditors().length; let oldInputCnt = (EditorRegistry).getEditorInputs().length; @@ -177,14 +177,14 @@ suite("Workbench BaseEditor", () => { assert.strictEqual(EditorRegistry.getEditor(new MyInput()), d2); assert.strictEqual(EditorRegistry.getEditor(new MyOtherInput()), d2); - assert.strictEqual(EditorRegistry.getEditorById("id1"), d1); - assert.strictEqual(EditorRegistry.getEditorById("id2"), d2); - assert(!EditorRegistry.getEditorById("id3")); + assert.strictEqual(EditorRegistry.getEditorById('id1'), d1); + assert.strictEqual(EditorRegistry.getEditorById('id2'), d2); + assert(!EditorRegistry.getEditorById('id3')); }); - test("Editor Lookup favors specific class over superclass (match on specific class)", function(done) { - let d1 = new EditorDescriptor("id1", "name", "vs/workbench/test/browser/parts/editor/baseEditor.test", "MyEditor"); - let d2 = new EditorDescriptor("id2", "name", "vs/workbench/test/browser/parts/editor/baseEditor.test", "MyOtherEditor"); + test('Editor Lookup favors specific class over superclass (match on specific class)', function (done) { + let d1 = new EditorDescriptor('id1', 'name', 'vs/workbench/test/browser/parts/editor/baseEditor.test', 'MyEditor'); + let d2 = new EditorDescriptor('id2', 'name', 'vs/workbench/test/browser/parts/editor/baseEditor.test', 'MyOtherEditor'); let oldEditors = EditorRegistry.getEditors(); (EditorRegistry).setEditors([]); @@ -194,19 +194,19 @@ suite("Workbench BaseEditor", () => { let inst = InstantiationService.createInstantiationService({}); - inst.createInstance(EditorRegistry.getEditor(inst.createInstance(MyStringInput, 'fake', '', '', mime.MIME_TEXT, false)), 'id').then(function(editor) { - assert.strictEqual(editor.getId(), "myEditor"); + inst.createInstance(EditorRegistry.getEditor(inst.createInstance(MyStringInput, 'fake', '', '', mime.MIME_TEXT, false)), 'id').then(function (editor) { + assert.strictEqual(editor.getId(), 'myEditor'); - return inst.createInstance(EditorRegistry.getEditor(inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false)), 'id').then(function(editor) { - assert.strictEqual(editor.getId(), "myOtherEditor"); + return inst.createInstance(EditorRegistry.getEditor(inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false)), 'id').then(function (editor) { + assert.strictEqual(editor.getId(), 'myOtherEditor'); (EditorRegistry).setEditors(oldEditors); }); }).done(() => done()); }); - test("Editor Lookup favors specific class over superclass (match on super class)", function(done) { - let d1 = new EditorDescriptor("id1", "name", "vs/workbench/test/browser/parts/editor/baseEditor.test", "MyOtherEditor"); + test('Editor Lookup favors specific class over superclass (match on super class)', function (done) { + let d1 = new EditorDescriptor('id1', 'name', 'vs/workbench/test/browser/parts/editor/baseEditor.test', 'MyOtherEditor'); let oldEditors = EditorRegistry.getEditors(); (EditorRegistry).setEditors([]); @@ -215,41 +215,41 @@ suite("Workbench BaseEditor", () => { let inst = InstantiationService.createInstantiationService({}); - inst.createInstance(EditorRegistry.getEditor(inst.createInstance(MyStringInput, 'fake', '', '', mime.MIME_TEXT, false)), 'id').then(function(editor) { - assert.strictEqual("myOtherEditor", editor.getId()); + inst.createInstance(EditorRegistry.getEditor(inst.createInstance(MyStringInput, 'fake', '', '', mime.MIME_TEXT, false)), 'id').then(function (editor) { + assert.strictEqual('myOtherEditor', editor.getId()); (EditorRegistry).setEditors(oldEditors); }).done(() => done()); }); - test("Editor Input Action - triggers isEnabled properly", function() { + test('Editor Input Action - triggers isEnabled properly', function () { let inst = InstantiationService.createInstantiationService({}); - let action = new MyAction("id", "label"); + let action = new MyAction('id', 'label'); action.input = inst.createInstance(StringEditorInput, 'input', '', '', mime.MIME_TEXT, false); assert.equal(action.didCallIsEnabled, true); }); - test("Editor Input Action Contributor", function() { + test('Editor Input Action Contributor', function () { let inst = InstantiationService.createInstantiationService({}); let contributor = new MyEditorInputActionContributor(); assert(!contributor.hasActions(null)); - assert(contributor.hasActions({ editor: new MyEditor("id", NullTelemetryService), input: inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false), position: 0 })); + assert(contributor.hasActions({ editor: new MyEditor('id', NullTelemetryService), input: inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false), position: 0 })); - let actionsFirst = contributor.getActions({ editor: new MyEditor("id", NullTelemetryService), input: inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false), position: 0 }); + let actionsFirst = contributor.getActions({ editor: new MyEditor('id', NullTelemetryService), input: inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false), position: 0 }); assert.strictEqual(actionsFirst.length, 2); let input = inst.createInstance(StringEditorInput, 'fake', '', '', mime.MIME_TEXT, false); - let actions = contributor.getActions({ editor: new MyEditor("id", NullTelemetryService), input: input, position: 0 }); + let actions = contributor.getActions({ editor: new MyEditor('id', NullTelemetryService), input: input, position: 0 }); assert(actions[0] === actionsFirst[0]); assert(actions[1] === actionsFirst[1]); assert((actions[0]).input === input); assert((actions[1]).input === input); // other editor causes new actions to be created - actions = contributor.getActions({ editor: new MyOtherEditor("id2", NullTelemetryService), input: input, position: 0 }); + actions = contributor.getActions({ editor: new MyOtherEditor('id2', NullTelemetryService), input: input, position: 0 }); assert(actions[0] !== actionsFirst[0]); assert(actions[1] !== actionsFirst[1]); assert((actions[0]).input === input); @@ -257,20 +257,20 @@ suite("Workbench BaseEditor", () => { // other input causes actions to loose input context let myInput = new MyInput(); - myInput.getId = function() { - return "foo.id"; + myInput.getId = function () { + return 'foo.id'; }; - actions = contributor.getActions({ editor: new MyEditor("id3", NullTelemetryService), input: myInput, position: 0 }); + actions = contributor.getActions({ editor: new MyEditor('id3', NullTelemetryService), input: myInput, position: 0 }); assert(!(actionsFirst[0]).input); assert(!(actionsFirst[1]).input); }); - test("Editor Input Factory", function() { + test('Editor Input Factory', function () { EditorRegistry.setInstantiationService(InstantiationService.createInstantiationService({})); - EditorRegistry.registerEditorInputFactory("myInputId", MyInputFactory); + EditorRegistry.registerEditorInputFactory('myInputId', MyInputFactory); - let factory = EditorRegistry.getEditorInputFactory("myInputId"); + let factory = EditorRegistry.getEditorInputFactory('myInputId'); assert(factory); }); diff --git a/src/vs/workbench/test/browser/parts/editor/editorInput.test.ts b/src/vs/workbench/test/browser/parts/editor/editorInput.test.ts index 0f1e528d6d9..5150134ab02 100644 --- a/src/vs/workbench/test/browser/parts/editor/editorInput.test.ts +++ b/src/vs/workbench/test/browser/parts/editor/editorInput.test.ts @@ -7,7 +7,6 @@ import * as assert from 'assert'; import {EditorInput} from 'vs/workbench/common/editor'; -import {EditorDescriptor} from 'vs/workbench/browser/parts/editor/baseEditor'; import {DiffEditorInput} from 'vs/workbench/common/editor/diffEditorInput'; class MyEditorInput extends EditorInput { @@ -24,9 +23,9 @@ class MyEditorInput extends EditorInput { } } -suite("Workbench - EditorInput", () => { +suite('Workbench - EditorInput', () => { - test("EditorInput", function() { + test('EditorInput', function () { let counter = 0; let input = new MyEditorInput(); let otherInput = new MyEditorInput(); @@ -36,7 +35,7 @@ suite("Workbench - EditorInput", () => { assert(!input.matches(null)); assert(!input.getName()); - input.addListener("dispose", function() { + input.addListener('dispose', function () { assert(true); counter++; }); @@ -45,21 +44,21 @@ suite("Workbench - EditorInput", () => { assert.equal(counter, 1); }); - test("DiffEditorInput", function() { + test('DiffEditorInput', function () { let counter = 0; let input = new MyEditorInput(); - input.addListener("dispose", function() { + input.addListener('dispose', function () { assert(true); counter++; }); let otherInput = new MyEditorInput(); - otherInput.addListener("dispose", function() { + otherInput.addListener('dispose', function () { assert(true); counter++; }); - let diffInput = new DiffEditorInput("name", "description", input, otherInput); + let diffInput = new DiffEditorInput('name', 'description', input, otherInput); assert.equal(diffInput.getOriginalInput(), input); assert.equal(diffInput.getModifiedInput(), otherInput); @@ -71,13 +70,13 @@ suite("Workbench - EditorInput", () => { assert.equal(counter, 2); }); - test("DiffEditorInput disposes when input inside disposes", function() { + test('DiffEditorInput disposes when input inside disposes', function () { let counter = 0; let input = new MyEditorInput(); let otherInput = new MyEditorInput(); - let diffInput = new DiffEditorInput("name", "description", input, otherInput); - diffInput.addListener("dispose", function() { + let diffInput = new DiffEditorInput('name', 'description', input, otherInput); + diffInput.addListener('dispose', function () { counter++; assert(true); }); @@ -87,8 +86,8 @@ suite("Workbench - EditorInput", () => { input = new MyEditorInput(); otherInput = new MyEditorInput(); - let diffInput2 = new DiffEditorInput("name", "description", input, otherInput); - diffInput2.addListener("dispose", function() { + let diffInput2 = new DiffEditorInput('name', 'description', input, otherInput); + diffInput2.addListener('dispose', function () { counter++; assert(true); }); diff --git a/src/vs/workbench/test/browser/parts/editor/editorModel.test.ts b/src/vs/workbench/test/browser/parts/editor/editorModel.test.ts index f43a91e7994..f27221e57c8 100644 --- a/src/vs/workbench/test/browser/parts/editor/editorModel.test.ts +++ b/src/vs/workbench/test/browser/parts/editor/editorModel.test.ts @@ -11,31 +11,30 @@ import {BaseTextEditorModel} from 'vs/workbench/common/editor/textEditorModel'; import {TextDiffEditorModel} from 'vs/workbench/common/editor/textDiffEditorModel'; import {DiffEditorInput} from 'vs/workbench/common/editor/diffEditorInput'; import {StringEditorInput} from 'vs/workbench/common/editor/stringEditorInput'; -import {StringEditorModel} from 'vs/workbench/common/editor/stringEditorModel'; import * as InstantiationService from 'vs/platform/instantiation/common/instantiationService'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; class MyEditorModel extends EditorModel { } class MyTextEditorModel extends BaseTextEditorModel { } -suite("Workbench - EditorModel", () => { +suite('Workbench - EditorModel', () => { - test("EditorModel", function(done) { + test('EditorModel', function (done) { let m = new MyEditorModel(); - m.load().then(function(model) { + m.load().then(function (model) { assert(model === m); assert.strictEqual(m.isResolved(), true); }).done(() => done()); }); - test("BaseTextEditorModel", function(done) { + test('BaseTextEditorModel', function (done) { let modelService = createMockModelService(); let modeService = createMockModeService(); let m = new MyTextEditorModel(modelService, modeService); - m.load().then(function(model: any) { + m.load().then(function (model: any) { assert(model === m); - return model.createTextEditorModel("foo", null, "text/plain").then(function() { + return model.createTextEditorModel('foo', null, 'text/plain').then(function () { assert.strictEqual(m.isResolved(), true); }); }).done(() => { @@ -44,16 +43,16 @@ suite("Workbench - EditorModel", () => { }); }); - test("TextDiffEditorModel", function(done) { + test('TextDiffEditorModel', function (done) { let inst = InstantiationService.createInstantiationService({ modeService: createMockModeService(), modelService: createMockModelService(), }); - let input = inst.createInstance(StringEditorInput, "name", 'description', "value", "text/plain", false); - let otherInput = inst.createInstance(StringEditorInput, "name2", 'description', "value2", "text/plain", false); - let diffInput = new DiffEditorInput("name", "description", input, otherInput); + let input = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'text/plain', false); + let otherInput = inst.createInstance(StringEditorInput, 'name2', 'description', 'value2', 'text/plain', false); + let diffInput = new DiffEditorInput('name', 'description', input, otherInput); - diffInput.resolve(true).then(function(model: any) { + diffInput.resolve(true).then(function (model: any) { assert(model); assert(model instanceof TextDiffEditorModel); @@ -61,7 +60,7 @@ suite("Workbench - EditorModel", () => { assert(diffEditorModel.original); assert(diffEditorModel.modified); - return diffInput.resolve(true).then(function(model: any) { + return diffInput.resolve(true).then(function (model: any) { assert(model.isResolved()); assert(diffEditorModel !== model.textDiffEditorModel); diff --git a/src/vs/workbench/test/browser/parts/editor/editorOptions.test.ts b/src/vs/workbench/test/browser/parts/editor/editorOptions.test.ts index 6553ae09081..91d59a4fe47 100644 --- a/src/vs/workbench/test/browser/parts/editor/editorOptions.test.ts +++ b/src/vs/workbench/test/browser/parts/editor/editorOptions.test.ts @@ -8,9 +8,9 @@ import * as assert from 'assert'; import {EditorOptions, TextEditorOptions} from 'vs/workbench/common/editor'; -suite("Workbench - EditorOptions", () => { +suite('Workbench - EditorOptions', () => { - test("EditorOptions", function() { + test('EditorOptions', function () { let options = new EditorOptions(); let otherOptions = new EditorOptions(); @@ -28,7 +28,7 @@ suite("Workbench - EditorOptions", () => { options.forceOpen = true; }); - test("TextEditorOptions", function() { + test('TextEditorOptions', function () { let options = new TextEditorOptions(); let otherOptions = new TextEditorOptions(); diff --git a/src/vs/workbench/test/browser/parts/editor/stringEditorInput.test.ts b/src/vs/workbench/test/browser/parts/editor/stringEditorInput.test.ts index 528c01c2b63..a09d3560b3d 100644 --- a/src/vs/workbench/test/browser/parts/editor/stringEditorInput.test.ts +++ b/src/vs/workbench/test/browser/parts/editor/stringEditorInput.test.ts @@ -6,31 +6,29 @@ 'use strict'; import * as assert from 'assert'; -import {TPromise } from 'vs/base/common/winjs.base'; -import * as Strings from 'vs/base/common/strings'; import URI from 'vs/base/common/uri'; import {StringEditorInput} from 'vs/workbench/common/editor/stringEditorInput'; import {ResourceEditorInput} from 'vs/workbench/common/editor/resourceEditorInput'; import {ResourceEditorModel} from 'vs/workbench/common/editor/resourceEditorModel'; -import {TestWorkspace, TestEditorService, MockRequestService} from 'vs/workbench/test/browser/servicesTestUtils'; +import {TestEditorService} from 'vs/workbench/test/browser/servicesTestUtils'; import * as InstantiationService from 'vs/platform/instantiation/common/instantiationService'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; -suite("Workbench - StringEditorInput", () => { +suite('Workbench - StringEditorInput', () => { - test("StringEditorInput", function(done) { - let editorService = new TestEditorService(function() { }); + test('StringEditorInput', function (done) { + let editorService = new TestEditorService(function () { }); let inst = InstantiationService.createInstantiationService({ modeService: createMockModeService(), modelService: createMockModelService() }); - let input = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); - let otherInput = inst.createInstance(StringEditorInput, "name", 'description', "othervalue", "mime", false); - let otherInputSame = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); + let input = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); + let otherInput = inst.createInstance(StringEditorInput, 'name', 'description', 'othervalue', 'mime', false); + let otherInputSame = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); - let inputSingleton = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", true); - let otherInputSingleton = inst.createInstance(StringEditorInput, "name", 'description', "othervalue", "mime", true); + let inputSingleton = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', true); + let otherInputSingleton = inst.createInstance(StringEditorInput, 'name', 'description', 'othervalue', 'mime', true); assert(inputSingleton.matches(otherInputSingleton)); (otherInputSingleton).singleton = false; assert(!inputSingleton.matches(otherInputSingleton)); @@ -41,25 +39,25 @@ suite("Workbench - StringEditorInput", () => { assert(!input.matches(null)); assert(input.getName()); - input = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); + input = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); - input = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); - editorService.resolveEditorModel(input, true).then(function(resolved) { + input = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); + editorService.resolveEditorModel(input, true).then(function (resolved) { let resolvedModelA = resolved; - return editorService.resolveEditorModel(input, true).then(function(resolved) { + return editorService.resolveEditorModel(input, true).then(function (resolved) { assert(resolvedModelA === resolved); // assert: Resolved Model cached per instance - let otherInput = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); - return editorService.resolveEditorModel(otherInput, true).then(function(resolved) { + let otherInput = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); + return editorService.resolveEditorModel(otherInput, true).then(function (resolved) { assert(resolvedModelA !== resolved); // NOT assert: Different instance, different model input.dispose(); - return editorService.resolveEditorModel(input, true).then(function(resolved) { + return editorService.resolveEditorModel(input, true).then(function (resolved) { assert(resolvedModelA !== resolved); // Different instance, because input got disposed let model = (resolved).textEditorModel; - return editorService.resolveEditorModel(input, true).then(function(againResolved) { + return editorService.resolveEditorModel(input, true).then(function (againResolved) { assert(model === (againResolved).textEditorModel); // Models should not differ because string input is constant input.dispose(); @@ -70,35 +68,33 @@ suite("Workbench - StringEditorInput", () => { }).done(() => done()); }); - test("StringEditorInput - setValue, clearValue, append", function() { + test('StringEditorInput - setValue, clearValue, append', function () { let inst = InstantiationService.createInstantiationService({ modeService: createMockModeService(), modelService: createMockModelService() }); - let input = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); + let input = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); assert.strictEqual(input.getValue(), 'value'); - input.setValue("foo"); + input.setValue('foo'); assert.strictEqual(input.getValue(), 'foo'); input.clearValue(); assert(!input.getValue()); - input.append("1"); + input.append('1'); assert.strictEqual(input.getValue(), '1'); - input.append("2"); + input.append('2'); assert.strictEqual(input.getValue(), '12'); }); - test("Input.matches() - StringEditorInput", function() { + test('Input.matches() - StringEditorInput', function () { let inst = InstantiationService.createInstantiationService({}); - let promise = TPromise.as("value"); + let stringEditorInput = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); + let promiseEditorInput = inst.createInstance(ResourceEditorInput, 'name', 'description', URI.create('inMemory', null, 'thePath')); - let stringEditorInput = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); - let promiseEditorInput = inst.createInstance(ResourceEditorInput, "name", "description", URI.create('inMemory', null, 'thePath')); - - let stringEditorInput2 = inst.createInstance(StringEditorInput, "name", 'description', "value", "mime", false); - let promiseEditorInput2 = inst.createInstance(ResourceEditorInput, "name", "description", URI.create('inMemory', null, 'thePath')); + let stringEditorInput2 = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'mime', false); + let promiseEditorInput2 = inst.createInstance(ResourceEditorInput, 'name', 'description', URI.create('inMemory', null, 'thePath')); assert.strictEqual(stringEditorInput.matches(null), false); assert.strictEqual(promiseEditorInput.matches(null), false); @@ -110,7 +106,7 @@ suite("Workbench - StringEditorInput", () => { assert.strictEqual(stringEditorInput.matches(stringEditorInput2), true); }); - test("ResourceEditorInput", function(done) { + test('ResourceEditorInput', function (done) { let modelService = createMockModelService(); let modeService = createMockModeService(); let inst = InstantiationService.createInstantiationService({ @@ -119,10 +115,10 @@ suite("Workbench - StringEditorInput", () => { }); let resource = URI.create('inMemory', null, 'thePath'); - let model = modelService.createModel('function test() {}', modeService.getOrCreateMode('text'), resource); - let input:ResourceEditorInput = inst.createInstance(ResourceEditorInput, 'The Name', 'The Description', resource); + modelService.createModel('function test() {}', modeService.getOrCreateMode('text'), resource); + let input: ResourceEditorInput = inst.createInstance(ResourceEditorInput, 'The Name', 'The Description', resource); - input.resolve().then((model:ResourceEditorModel) => { + input.resolve().then((model: ResourceEditorModel) => { assert.ok(model); assert.equal(model.getValue(), 'function test() {}'); diff --git a/src/vs/workbench/test/browser/parts/editor/stringEditorModel.test.ts b/src/vs/workbench/test/browser/parts/editor/stringEditorModel.test.ts index eef66c631b2..736d95a165e 100644 --- a/src/vs/workbench/test/browser/parts/editor/stringEditorModel.test.ts +++ b/src/vs/workbench/test/browser/parts/editor/stringEditorModel.test.ts @@ -6,72 +6,70 @@ 'use strict'; import * as assert from 'assert'; -import * as Strings from 'vs/base/common/strings'; -import {TestEditorService, TestRequestService} from 'vs/workbench/test/browser/servicesTestUtils'; import {StringEditorModel} from 'vs/workbench/common/editor/stringEditorModel'; import * as InstantiationService from 'vs/platform/instantiation/common/instantiationService'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; -suite("Workbench - StringEditorModel", () => { +suite('Workbench - StringEditorModel', () => { - test("StringEditorModel", function(done) { + test('StringEditorModel', function (done) { let inst = InstantiationService.createInstantiationService({ modeService: createMockModeService(), modelService: createMockModelService(), }); - let m = inst.createInstance(StringEditorModel, "value", "mime", null); - m.load().then(function(model) { + let m = inst.createInstance(StringEditorModel, 'value', 'mime', null); + m.load().then(function (model) { assert(model === m); let textEditorModel = m.textEditorModel; - assert.strictEqual(textEditorModel.getValue(), "value"); + assert.strictEqual(textEditorModel.getValue(), 'value'); assert.strictEqual(m.isResolved(), true); - (m).value = "something"; - return m.load().then(function(model) { + (m).value = 'something'; + return m.load().then(function (model) { assert(textEditorModel === m.textEditorModel); - assert.strictEqual(m.getValue(), "something"); + assert.strictEqual(m.getValue(), 'something'); }); }).done(() => { m.dispose(); - done() + done(); }); }); - test("StringEditorModel - setValue, clearValue, append, trim", function(done) { + test('StringEditorModel - setValue, clearValue, append, trim', function (done) { let inst = InstantiationService.createInstantiationService({ modeService: createMockModeService(), modelService: createMockModelService(), }); - let m = inst.createInstance(StringEditorModel, "value", "mime", null); - m.load().then(function(model) { + let m = inst.createInstance(StringEditorModel, 'value', 'mime', null); + m.load().then(function (model) { assert(model === m); let textEditorModel = m.textEditorModel; - assert.strictEqual(textEditorModel.getValue(), "value"); + assert.strictEqual(textEditorModel.getValue(), 'value'); - m.setValue("foobar"); - assert.strictEqual(m.getValue(), "foobar"); - assert.strictEqual(textEditorModel.getValue(), "foobar"); + m.setValue('foobar'); + assert.strictEqual(m.getValue(), 'foobar'); + assert.strictEqual(textEditorModel.getValue(), 'foobar'); m.clearValue(); assert(!m.getValue()); assert(!textEditorModel.getValue()); - m.append("1"); - assert.strictEqual(m.getValue(), "1"); - assert.strictEqual(textEditorModel.getValue(), "1"); + m.append('1'); + assert.strictEqual(m.getValue(), '1'); + assert.strictEqual(textEditorModel.getValue(), '1'); - m.append("1"); - assert.strictEqual(m.getValue(), "11"); - assert.strictEqual(textEditorModel.getValue(), "11"); + m.append('1'); + assert.strictEqual(m.getValue(), '11'); + assert.strictEqual(textEditorModel.getValue(), '11'); - m.setValue("line\nline\nline"); + m.setValue('line\nline\nline'); m.trim(2); - assert.strictEqual(m.getValue(), "line\nline"); - assert.strictEqual(textEditorModel.getValue(), "line\nline"); + assert.strictEqual(m.getValue(), 'line\nline'); + assert.strictEqual(textEditorModel.getValue(), 'line\nline'); }).done(() => { m.dispose(); done(); diff --git a/src/vs/workbench/test/browser/parts/quickOpen/quickopen.test.ts b/src/vs/workbench/test/browser/parts/quickOpen/quickopen.test.ts index b88984542d1..eaec42d56a9 100644 --- a/src/vs/workbench/test/browser/parts/quickOpen/quickopen.test.ts +++ b/src/vs/workbench/test/browser/parts/quickOpen/quickopen.test.ts @@ -6,7 +6,7 @@ 'use strict'; import * as assert from 'assert'; -import {TestConfigurationService, TestContextService, TestStorageService, TestEventService, TestEditorService, TestQuickOpenService} from 'vs/workbench/test/browser/servicesTestUtils'; +import {TestContextService, TestStorageService, TestEventService, TestEditorService, TestQuickOpenService} from 'vs/workbench/test/browser/servicesTestUtils'; import {MockKeybindingService} from 'vs/platform/keybinding/test/common/mockKeybindingService'; import {Registry} from 'vs/platform/platform'; import {EditorHistoryModel, EditorHistoryEntry} from 'vs/workbench/browser/parts/quickopen/editorHistoryModel'; @@ -18,12 +18,11 @@ import {StringEditorInput} from 'vs/workbench/common/editor/stringEditorInput'; import {EditorInput} from 'vs/workbench/common/editor'; import {isEmptyObject} from 'vs/base/common/types'; import {join} from 'vs/base/common/paths'; -import {BaseEditor, EditorInputAction, EditorInputActionContributor, EditorDescriptor, Extensions, IEditorRegistry, IEditorInputFactory} from 'vs/workbench/browser/parts/editor/baseEditor'; +import {Extensions, IEditorRegistry} from 'vs/workbench/browser/parts/editor/baseEditor'; import URI from 'vs/base/common/uri'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {EventType, EditorEvent} from 'vs/workbench/common/events'; -import {Promise, TPromise} from 'vs/base/common/winjs.base'; -import {IEditorInput, IEditorModel, IEditorOptions, Position, IEditor, IResourceInput, ITextEditorModel} from 'vs/platform/editor/common/editor'; +import {Position} from 'vs/platform/editor/common/editor'; function toResource(path) { return URI.file(join('C:\\', path)); @@ -43,7 +42,7 @@ suite('Workbench QuickOpen', () => { let model = new EditorHistoryModel(editorService, null, contextService); - let input1 = inst.createInstance(StringEditorInput, "name1", 'description', "value1", "text/plain", false); + let input1 = inst.createInstance(StringEditorInput, 'name1', 'description', 'value1', 'text/plain', false); let entry1 = new EditorHistoryEntry(editorService, contextService, input1, null, null, model); assert.equal(input1.getName(), entry1.getLabel()); @@ -62,8 +61,8 @@ suite('Workbench QuickOpen', () => { assert(clone1.getInput() === input1); assert.equal(1, clone1.getHighlights()[0].length); - let input2 = inst.createInstance(StringEditorInput, "name2", 'description', "value2", "text/plain", false); - (input2).getResource = () => "path"; + let input2 = inst.createInstance(StringEditorInput, 'name2', 'description', 'value2', 'text/plain', false); + (input2).getResource = () => 'path'; let entry2 = new EditorHistoryEntry(editorService, contextService, input2, null, null, model); assert.ok(!entry2.getResource()); // inputs with getResource are not taken as resource for entry, only files and untitled @@ -81,7 +80,7 @@ suite('Workbench QuickOpen', () => { let model = new EditorHistoryModel(editorService, null, contextService); - let input1 = inst.createInstance(StringEditorInput, "name1", 'description', "value1", "text/plain", false); + let input1 = inst.createInstance(StringEditorInput, 'name1', 'description', 'value1', 'text/plain', false); model.add(input1); @@ -102,9 +101,9 @@ suite('Workbench QuickOpen', () => { let model = new EditorHistoryModel(editorService, inst, contextService); - let input1 = inst.createInstance(StringEditorInput, "name1", 'description', "value1", "text/plain", false); - let input2 = inst.createInstance(StringEditorInput, "name2", 'description', "value2", "text/plain", false); - let input3 = inst.createInstance(StringEditorInput, "name3", 'description', "value3", "text/plain", false); + let input1 = inst.createInstance(StringEditorInput, 'name1', 'description', 'value1', 'text/plain', false); + let input2 = inst.createInstance(StringEditorInput, 'name2', 'description', 'value2', 'text/plain', false); + let input3 = inst.createInstance(StringEditorInput, 'name3', 'description', 'value3', 'text/plain', false); assert.equal(0, model.getEntries().length); @@ -126,8 +125,8 @@ suite('Workbench QuickOpen', () => { model.saveTo(memento); assert(isEmptyObject(memento)); - let saveInput1 = inst.createInstance(fileInputCtor, toResource("path1"), "text/plain", void 0); - let saveInput2 = inst.createInstance(fileInputCtor, toResource("path2"), "text/plain", void 0); + let saveInput1 = inst.createInstance(fileInputCtor, toResource('path1'), 'text/plain', void 0); + let saveInput2 = inst.createInstance(fileInputCtor, toResource('path2'), 'text/plain', void 0); model.add(saveInput1); model.add(saveInput2); @@ -144,35 +143,35 @@ suite('Workbench QuickOpen', () => { model = new EditorHistoryModel(editorService, inst, contextService); - let cinput1 = inst.createInstance(fileInputCtor, toResource("Hello World"), "text/plain", void 0); - let cinput2 = inst.createInstance(fileInputCtor, toResource("Yes World"), "text/plain", void 0); - let cinput3 = inst.createInstance(fileInputCtor, toResource("No Hello"), "text/plain", void 0); + let cinput1 = inst.createInstance(fileInputCtor, toResource('Hello World'), 'text/plain', void 0); + let cinput2 = inst.createInstance(fileInputCtor, toResource('Yes World'), 'text/plain', void 0); + let cinput3 = inst.createInstance(fileInputCtor, toResource('No Hello'), 'text/plain', void 0); model.add(cinput1); model.add(cinput2); model.add(cinput3); - assert.equal(3, model.getResults("*").length); - assert.equal(1, model.getResults("HW").length); - assert.equal(2, model.getResults("World").length); + assert.equal(3, model.getResults('*').length); + assert.equal(1, model.getResults('HW').length); + assert.equal(2, model.getResults('World').length); - assert.equal(1, model.getResults("*")[0].getHighlights()[0].length); + assert.equal(1, model.getResults('*')[0].getHighlights()[0].length); model = new EditorHistoryModel(editorService, inst, contextService); - let cinput4 = inst.createInstance(fileInputCtor, toResource("foo.ts"), "text/plain", void 0); - let cinput5 = inst.createInstance(fileInputCtor, toResource("bar.js"), "text/plain", void 0); - let cinput6 = inst.createInstance(fileInputCtor, toResource("foo.js"), "text/plain", void 0); + let cinput4 = inst.createInstance(fileInputCtor, toResource('foo.ts'), 'text/plain', void 0); + let cinput5 = inst.createInstance(fileInputCtor, toResource('bar.js'), 'text/plain', void 0); + let cinput6 = inst.createInstance(fileInputCtor, toResource('foo.js'), 'text/plain', void 0); model.add(cinput4); model.add(cinput5); model.add(cinput6); - let sortedResults = model.getResults("*"); - assert.equal(3, model.getResults("*").length); - assert.equal("c:/bar.js", sortedResults[0].getResource().fsPath.replace(/\\/g, '/')); - assert.equal("c:/foo.js", sortedResults[1].getResource().fsPath.replace(/\\/g, '/')); - assert.equal("c:/foo.ts", sortedResults[2].getResource().fsPath.replace(/\\/g, '/')); + let sortedResults = model.getResults('*'); + assert.equal(3, model.getResults('*').length); + assert.equal('c:/bar.js', sortedResults[0].getResource().fsPath.replace(/\\/g, '/')); + assert.equal('c:/foo.js', sortedResults[1].getResource().fsPath.replace(/\\/g, '/')); + assert.equal('c:/foo.ts', sortedResults[2].getResource().fsPath.replace(/\\/g, '/')); }); test('QuickOpen Handler and Registry', () => { @@ -180,21 +179,21 @@ suite('Workbench QuickOpen', () => { let handler = new QuickOpenHandlerDescriptor( 'test', 'TestHandler', - ",", - "Handler" + ',', + 'Handler' ); registry.registerQuickOpenHandler(handler); - assert(registry.getQuickOpenHandler(",") === handler); + assert(registry.getQuickOpenHandler(',') === handler); let handlers = registry.getQuickOpenHandlers(); - assert(handlers.some((handler: QuickOpenHandlerDescriptor) => handler.prefix === ",")); + assert(handlers.some((handler: QuickOpenHandlerDescriptor) => handler.prefix === ',')); }); test('QuickOpen Action', () => { - let defaultAction = new QuickOpenAction("id", "label", void 0, new TestQuickOpenService((prefix: string) => assert(!prefix))); - let prefixAction = new QuickOpenAction("id", "label", ",", new TestQuickOpenService((prefix: string) => assert(!!prefix))); + let defaultAction = new QuickOpenAction('id', 'label', void 0, new TestQuickOpenService((prefix: string) => assert(!prefix))); + let prefixAction = new QuickOpenAction('id', 'label', ',', new TestQuickOpenService((prefix: string) => assert(!!prefix))); defaultAction.run(); prefixAction.run(); @@ -224,8 +223,8 @@ suite('Workbench QuickOpen', () => { assert.equal(0, controller.getEditorHistoryModel().getEntries().length); - let cinput1 = inst.createInstance(fileInputCtor, toResource("Hello World"), "text/plain", void 0); - let event = new EditorEvent(null, "", cinput1, null, Position.LEFT); + let cinput1 = inst.createInstance(fileInputCtor, toResource('Hello World'), 'text/plain', void 0); + let event = new EditorEvent(null, '', cinput1, null, Position.LEFT); eventService.emit(EventType.EDITOR_INPUT_CHANGING, event); assert.equal(1, controller.getEditorHistoryModel().getEntries().length); diff --git a/src/vs/workbench/test/browser/services.test.ts b/src/vs/workbench/test/browser/services.test.ts index 89f08277816..46695c88277 100644 --- a/src/vs/workbench/test/browser/services.test.ts +++ b/src/vs/workbench/test/browser/services.test.ts @@ -21,7 +21,6 @@ import {TestEventService, TestLifecycleService, TestPartService, TestStorageServ import {Viewlet} from 'vs/workbench/browser/viewlet'; import {EventType} from 'vs/workbench/common/events'; import {MainTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; -import Severity from 'vs/base/common/severity'; import {UntitledEditorService} from 'vs/workbench/services/untitled/common/untitledEditorService'; import {WorkbenchProgressService, ScopedService} from 'vs/workbench/services/progress/browser/progressService'; import {EditorArrangement} from 'vs/workbench/services/editor/common/editorService'; @@ -34,7 +33,7 @@ import {createMockModeService, createMockModelService} from 'vs/editor/test/comm let activeViewlet: Viewlet = {}; let activeEditor: BaseEditor = { - getSelection: function() { + getSelection: function () { return 'test.selection'; } }; @@ -186,17 +185,17 @@ class TestProgressBar { public getContainer() { return { - show: function() { }, - hide: function() { } + show: function () { }, + hide: function () { } }; } } suite('Workbench UI Services', () => { - test('WorkbenchEditorService', function() { + test('WorkbenchEditorService', function () { const TestFileService = { - resolveContent: function(resource) { + resolveContent: function (resource) { return TPromise.as({ resource: resource, value: 'Hello Html', @@ -208,7 +207,7 @@ suite('Workbench UI Services', () => { }); }, - updateContent: function(res) { + updateContent: function (res) { return TPromise.timeout(1).then(() => { return { resource: res, @@ -220,9 +219,9 @@ suite('Workbench UI Services', () => { }; }); } - } + }; - let editorService = new TestEditorService(function() { }); + let editorService = new TestEditorService(function () { }); let eventService = new TestEventService(); let contextService = new TestContextService(TestWorkspace); let requestService = new MockRequestService(TestWorkspace, (url) => { @@ -308,7 +307,6 @@ suite('Workbench UI Services', () => { service.resolveEditorModel(input, true).then((model: StringEditorModel) => { assert(model instanceof StringEditorModel); - let stringEditorModel = model; assert(model.isResolved()); service.resolveEditorModel(input, false).then((otherModel) => { @@ -338,8 +336,8 @@ suite('Workbench UI Services', () => { }); }); - test('DelegatingWorkbenchEditorService', function() { - let editorService = new TestEditorService(function() { }); + test('DelegatingWorkbenchEditorService', function () { + let editorService = new TestEditorService(function () { }); let contextService = new TestContextService(TestWorkspace); let eventService = new TestEventService(); let requestService = new TestRequestService(); @@ -368,7 +366,7 @@ suite('Workbench UI Services', () => { let testEditorPart = new TestEditorPart(); testEditorPart.setActiveEditorInput(activeInput); - let service = inst.createInstance(WorkbenchEditorService, testEditorPart); + inst.createInstance(WorkbenchEditorService, testEditorPart); class MyEditor extends BaseEditor { constructor(id: string) { @@ -376,7 +374,7 @@ suite('Workbench UI Services', () => { } getId(): string { - return "myEditor"; + return 'myEditor'; } public layout(): void { @@ -400,7 +398,7 @@ suite('Workbench UI Services', () => { delegate.openEditor(inp); }); - test('ScopedService', function() { + test('ScopedService', function () { let eventService = new TestEventService(); let service = new TestScopedService(eventService); assert(!service.isActive); @@ -421,7 +419,7 @@ suite('Workbench UI Services', () => { assert(!service.isActive); }); - test('WorkbenchProgressService', function() { + test('WorkbenchProgressService', function () { let testProgressBar = new TestProgressBar(); let eventService = new TestEventService(); let service = new WorkbenchProgressService(eventService, (testProgressBar), 'test.scopeId', true); diff --git a/src/vs/workbench/test/browser/servicesTestUtils.ts b/src/vs/workbench/test/browser/servicesTestUtils.ts index 619a04bfa56..070976188ac 100644 --- a/src/vs/workbench/test/browser/servicesTestUtils.ts +++ b/src/vs/workbench/test/browser/servicesTestUtils.ts @@ -452,13 +452,13 @@ export class TestQuickOpenService implements QuickOpenService.IQuickOpenService return null; } - public removeEditorHistoryEntry(input: WorkbenchEditorCommon.EditorInput): void {} - public dispose() {} - public quickNavigate(): void {} + public removeEditorHistoryEntry(input: WorkbenchEditorCommon.EditorInput): void { } + public dispose() { } + public quickNavigate(): void { } } export const TestFileService = { - resolveContent: function(resource) { + resolveContent: function (resource) { return TPromise.as({ resource: resource, value: 'Hello Html', @@ -470,7 +470,7 @@ export const TestFileService = { }); }, - updateContent: function(res) { + updateContent: function (res) { return TPromise.timeout(1).then(() => { return { resource: res, @@ -491,7 +491,7 @@ export class TestConfigurationService extends EventEmitter.EventEmitter implemen return {}; } - public hasWorkspaceConfiguration():boolean { + public hasWorkspaceConfiguration(): boolean { return false; } diff --git a/src/vs/workbench/test/browser/storage.test.ts b/src/vs/workbench/test/browser/storage.test.ts index 231f2e24730..9185a54238c 100644 --- a/src/vs/workbench/test/browser/storage.test.ts +++ b/src/vs/workbench/test/browser/storage.test.ts @@ -11,179 +11,179 @@ import {StorageEventType, StorageScope} from 'vs/platform/storage/common/storage import {TestContextService, TestWorkspace} from 'vs/workbench/test/browser/servicesTestUtils'; import {Storage, InMemoryLocalStorage} from 'vs/workbench/common/storage'; -suite("Workbench Storage", () => { - test("Store Data", () => { +suite('Workbench Storage', () => { + test('Store Data', () => { let context = new TestContextService(); let s = new Storage(context, new InMemoryLocalStorage()); let counter = 0; - let unbind = s.addListener(StorageEventType.STORAGE, function(e) { - assert.strictEqual(e.key, "Monaco.IDE.Core.Storage.Test.store"); + let unbind = s.addListener(StorageEventType.STORAGE, function (e) { + assert.strictEqual(e.key, 'Monaco.IDE.Core.Storage.Test.store'); assert.strictEqual(e.oldValue, null); - assert.strictEqual(e.newValue, "foobar"); + assert.strictEqual(e.newValue, 'foobar'); counter++; assert(counter <= 1); }); - s.store("Monaco.IDE.Core.Storage.Test.store", "foobar"); - s.store("Monaco.IDE.Core.Storage.Test.store", "foobar"); + s.store('Monaco.IDE.Core.Storage.Test.store', 'foobar'); + s.store('Monaco.IDE.Core.Storage.Test.store', 'foobar'); unbind(); counter = 0; - unbind = s.addListener(StorageEventType.STORAGE, function(e) { - assert.strictEqual(e.key, "Monaco.IDE.Core.Storage.Test.store"); - assert.strictEqual(e.oldValue, "foobar"); - assert.strictEqual(e.newValue, "barfoo"); + unbind = s.addListener(StorageEventType.STORAGE, function (e) { + assert.strictEqual(e.key, 'Monaco.IDE.Core.Storage.Test.store'); + assert.strictEqual(e.oldValue, 'foobar'); + assert.strictEqual(e.newValue, 'barfoo'); counter++; assert(counter <= 1); }); - s.store("Monaco.IDE.Core.Storage.Test.store", "barfoo"); - s.store("Monaco.IDE.Core.Storage.Test.store", "barfoo"); + s.store('Monaco.IDE.Core.Storage.Test.store', 'barfoo'); + s.store('Monaco.IDE.Core.Storage.Test.store', 'barfoo'); unbind(); s.dispose(); }); - test("Swap Data", () => { + test('Swap Data', () => { let context = new TestContextService(); let s = new Storage(context, new InMemoryLocalStorage()); let counter = 0; - let unbind = s.addListener(StorageEventType.STORAGE, function(e) { - assert.strictEqual(e.key, "Monaco.IDE.Core.Storage.Test.swap"); + let unbind = s.addListener(StorageEventType.STORAGE, function (e) { + assert.strictEqual(e.key, 'Monaco.IDE.Core.Storage.Test.swap'); assert.strictEqual(e.oldValue, null); - assert.strictEqual(e.newValue, "foobar"); + assert.strictEqual(e.newValue, 'foobar'); counter++; assert(counter <= 1); }); - s.swap("Monaco.IDE.Core.Storage.Test.swap", "foobar", "barfoo", StorageScope.GLOBAL, "foobar"); + s.swap('Monaco.IDE.Core.Storage.Test.swap', 'foobar', 'barfoo', StorageScope.GLOBAL, 'foobar'); unbind(); counter = 0; - unbind = s.addListener(StorageEventType.STORAGE, function(e) { - assert.strictEqual(e.key, "Monaco.IDE.Core.Storage.Test.swap"); - assert.strictEqual(e.oldValue, "foobar"); - assert.strictEqual(e.newValue, "barfoo"); + unbind = s.addListener(StorageEventType.STORAGE, function (e) { + assert.strictEqual(e.key, 'Monaco.IDE.Core.Storage.Test.swap'); + assert.strictEqual(e.oldValue, 'foobar'); + assert.strictEqual(e.newValue, 'barfoo'); counter++; assert(counter <= 1); }); - s.swap("Monaco.IDE.Core.Storage.Test.swap", "foobar", "barfoo", StorageScope.GLOBAL, "foobar"); + s.swap('Monaco.IDE.Core.Storage.Test.swap', 'foobar', 'barfoo', StorageScope.GLOBAL, 'foobar'); unbind(); }); - test("Swap Data with undefined default value", () => { + test('Swap Data with undefined default value', () => { let context = new TestContextService(); let s = new Storage(context, new InMemoryLocalStorage()); - s.swap("Monaco.IDE.Core.Storage.Test.swap", "foobar", "barfoo"); - assert.strictEqual("foobar", s.get("Monaco.IDE.Core.Storage.Test.swap")); - s.swap("Monaco.IDE.Core.Storage.Test.swap", "foobar", "barfoo"); - assert.strictEqual("barfoo", s.get("Monaco.IDE.Core.Storage.Test.swap")); - s.swap("Monaco.IDE.Core.Storage.Test.swap", "foobar", "barfoo"); - assert.strictEqual("foobar", s.get("Monaco.IDE.Core.Storage.Test.swap")); + s.swap('Monaco.IDE.Core.Storage.Test.swap', 'foobar', 'barfoo'); + assert.strictEqual('foobar', s.get('Monaco.IDE.Core.Storage.Test.swap')); + s.swap('Monaco.IDE.Core.Storage.Test.swap', 'foobar', 'barfoo'); + assert.strictEqual('barfoo', s.get('Monaco.IDE.Core.Storage.Test.swap')); + s.swap('Monaco.IDE.Core.Storage.Test.swap', 'foobar', 'barfoo'); + assert.strictEqual('foobar', s.get('Monaco.IDE.Core.Storage.Test.swap')); }); - test("Remove Data", () => { + test('Remove Data', () => { let context = new TestContextService(); let s = new Storage(context, new InMemoryLocalStorage()); let counter = 0; - let unbind = s.addListener(StorageEventType.STORAGE, function(e) { - assert.strictEqual(e.key, "Monaco.IDE.Core.Storage.Test.remove"); + let unbind = s.addListener(StorageEventType.STORAGE, function (e) { + assert.strictEqual(e.key, 'Monaco.IDE.Core.Storage.Test.remove'); assert.strictEqual(e.oldValue, null); - assert.strictEqual(e.newValue, "foobar"); + assert.strictEqual(e.newValue, 'foobar'); counter++; assert(counter <= 1); }); - s.store("Monaco.IDE.Core.Storage.Test.remove", "foobar"); + s.store('Monaco.IDE.Core.Storage.Test.remove', 'foobar'); unbind(); counter = 0; - unbind = s.addListener(StorageEventType.STORAGE, function(e) { - assert.strictEqual(e.key, "Monaco.IDE.Core.Storage.Test.remove"); - assert.strictEqual(e.oldValue, "foobar"); + unbind = s.addListener(StorageEventType.STORAGE, function (e) { + assert.strictEqual(e.key, 'Monaco.IDE.Core.Storage.Test.remove'); + assert.strictEqual(e.oldValue, 'foobar'); assert.strictEqual(e.newValue, null); counter++; assert(counter <= 1); }); - s.remove("Monaco.IDE.Core.Storage.Test.remove"); + s.remove('Monaco.IDE.Core.Storage.Test.remove'); unbind(); }); - test("Get Data, Integer, Boolean", () => { + test('Get Data, Integer, Boolean', () => { let context = new TestContextService(); let s = new Storage(context, new InMemoryLocalStorage()); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.get", StorageScope.GLOBAL, "foobar"), "foobar"); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.get", StorageScope.GLOBAL, ""), ""); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.getInteger", StorageScope.GLOBAL, 5), 5); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.getInteger", StorageScope.GLOBAL, 0), 0); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.getBoolean", StorageScope.GLOBAL, true), true); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.getBoolean", StorageScope.GLOBAL, false), false); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.get', StorageScope.GLOBAL, 'foobar'), 'foobar'); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.get', StorageScope.GLOBAL, ''), ''); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.getInteger', StorageScope.GLOBAL, 5), 5); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.getInteger', StorageScope.GLOBAL, 0), 0); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.getBoolean', StorageScope.GLOBAL, true), true); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.getBoolean', StorageScope.GLOBAL, false), false); - s.store("Monaco.IDE.Core.Storage.Test.get", "foobar"); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.get"), "foobar"); + s.store('Monaco.IDE.Core.Storage.Test.get', 'foobar'); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.get'), 'foobar'); - s.store("Monaco.IDE.Core.Storage.Test.get", ""); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.get"), ""); + s.store('Monaco.IDE.Core.Storage.Test.get', ''); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.get'), ''); - s.store("Monaco.IDE.Core.Storage.Test.getInteger", 5); - assert.strictEqual(s.getInteger("Monaco.IDE.Core.Storage.Test.getInteger"), 5); + s.store('Monaco.IDE.Core.Storage.Test.getInteger', 5); + assert.strictEqual(s.getInteger('Monaco.IDE.Core.Storage.Test.getInteger'), 5); - s.store("Monaco.IDE.Core.Storage.Test.getInteger", 0); - assert.strictEqual(s.getInteger("Monaco.IDE.Core.Storage.Test.getInteger"), 0); + s.store('Monaco.IDE.Core.Storage.Test.getInteger', 0); + assert.strictEqual(s.getInteger('Monaco.IDE.Core.Storage.Test.getInteger'), 0); - s.store("Monaco.IDE.Core.Storage.Test.getBoolean", true); - assert.strictEqual(s.getBoolean("Monaco.IDE.Core.Storage.Test.getBoolean"), true); + s.store('Monaco.IDE.Core.Storage.Test.getBoolean', true); + assert.strictEqual(s.getBoolean('Monaco.IDE.Core.Storage.Test.getBoolean'), true); - s.store("Monaco.IDE.Core.Storage.Test.getBoolean", false); - assert.strictEqual(s.getBoolean("Monaco.IDE.Core.Storage.Test.getBoolean"), false); + s.store('Monaco.IDE.Core.Storage.Test.getBoolean', false); + assert.strictEqual(s.getBoolean('Monaco.IDE.Core.Storage.Test.getBoolean'), false); - assert.strictEqual(s.get("Monaco.IDE.Core.Storage.Test.getDefault", StorageScope.GLOBAL, "getDefault"), "getDefault"); - assert.strictEqual(s.getInteger("Monaco.IDE.Core.Storage.Test.getIntegerDefault", StorageScope.GLOBAL, 5), 5); - assert.strictEqual(s.getBoolean("Monaco.IDE.Core.Storage.Test.getBooleanDefault", StorageScope.GLOBAL, true), true); + assert.strictEqual(s.get('Monaco.IDE.Core.Storage.Test.getDefault', StorageScope.GLOBAL, 'getDefault'), 'getDefault'); + assert.strictEqual(s.getInteger('Monaco.IDE.Core.Storage.Test.getIntegerDefault', StorageScope.GLOBAL, 5), 5); + assert.strictEqual(s.getBoolean('Monaco.IDE.Core.Storage.Test.getBooleanDefault', StorageScope.GLOBAL, true), true); }); - test("Storage cleans up when workspace changes", () => { + test('Storage cleans up when workspace changes', () => { let storageImpl = new InMemoryLocalStorage(); let context = new TestContextService(); let s = new Storage(context, storageImpl); - s.store("key1", "foobar"); - s.store("key2", "something"); - s.store("wkey1", "foo", StorageScope.WORKSPACE); - s.store("wkey2", "foo2", StorageScope.WORKSPACE); + s.store('key1', 'foobar'); + s.store('key2', 'something'); + s.store('wkey1', 'foo', StorageScope.WORKSPACE); + s.store('wkey2', 'foo2', StorageScope.WORKSPACE); s = new Storage(context, storageImpl); - assert.strictEqual(s.get("key1", StorageScope.GLOBAL), "foobar"); - assert.strictEqual(s.get("key1", StorageScope.WORKSPACE, null), null); + assert.strictEqual(s.get('key1', StorageScope.GLOBAL), 'foobar'); + assert.strictEqual(s.get('key1', StorageScope.WORKSPACE, null), null); - assert.strictEqual(s.get("key2", StorageScope.GLOBAL), "something"); - assert.strictEqual(s.get("wkey1", StorageScope.WORKSPACE), "foo"); - assert.strictEqual(s.get("wkey2", StorageScope.WORKSPACE), "foo2"); + assert.strictEqual(s.get('key2', StorageScope.GLOBAL), 'something'); + assert.strictEqual(s.get('wkey1', StorageScope.WORKSPACE), 'foo'); + assert.strictEqual(s.get('wkey2', StorageScope.WORKSPACE), 'foo2'); let ws: any = clone(TestWorkspace); ws.uid = new Date().getTime() + 100; context = new TestContextService(ws); s = new Storage(context, storageImpl); - assert.strictEqual(s.get("key1", StorageScope.GLOBAL), "foobar"); - assert.strictEqual(s.get("key1", StorageScope.WORKSPACE, null), null); + assert.strictEqual(s.get('key1', StorageScope.GLOBAL), 'foobar'); + assert.strictEqual(s.get('key1', StorageScope.WORKSPACE, null), null); - assert.strictEqual(s.get("key2", StorageScope.GLOBAL), "something"); - assert(!s.get("wkey1", StorageScope.WORKSPACE)); - assert(!s.get("wkey2", StorageScope.WORKSPACE)); + assert.strictEqual(s.get('key2', StorageScope.GLOBAL), 'something'); + assert(!s.get('wkey1', StorageScope.WORKSPACE)); + assert(!s.get('wkey2', StorageScope.WORKSPACE)); }); }); \ No newline at end of file diff --git a/src/vs/workbench/test/browser/viewlet.test.ts b/src/vs/workbench/test/browser/viewlet.test.ts index 4236510cd7b..7eebd5690b6 100644 --- a/src/vs/workbench/test/browser/viewlet.test.ts +++ b/src/vs/workbench/test/browser/viewlet.test.ts @@ -7,39 +7,39 @@ import * as assert from 'assert'; import * as Platform from 'vs/platform/platform'; -import {Viewlet, ViewletDescriptor, Extensions} from 'vs/workbench/browser/viewlet'; +import {ViewletDescriptor, Extensions} from 'vs/workbench/browser/viewlet'; import * as Types from 'vs/base/common/types'; -suite("Workbench Viewlet", () => { +suite('Workbench Viewlet', () => { - test("ViewletDescriptor API", function() { - let d = new ViewletDescriptor("moduleId", "ctorName", "id", "name", "class", 5); - assert.strictEqual(d.id, "id"); - assert.strictEqual(d.name, "name"); - assert.strictEqual(d.cssClass, "class"); + test('ViewletDescriptor API', function () { + let d = new ViewletDescriptor('moduleId', 'ctorName', 'id', 'name', 'class', 5); + assert.strictEqual(d.id, 'id'); + assert.strictEqual(d.name, 'name'); + assert.strictEqual(d.cssClass, 'class'); assert.strictEqual(d.order, 5); }); - test("Editor Aware ViewletDescriptor API", function() { - let d = new ViewletDescriptor("moduleId", "ctorName", "id", "name", "class", 5); - assert.strictEqual(d.id, "id"); - assert.strictEqual(d.name, "name"); + test('Editor Aware ViewletDescriptor API', function () { + let d = new ViewletDescriptor('moduleId', 'ctorName', 'id', 'name', 'class', 5); + assert.strictEqual(d.id, 'id'); + assert.strictEqual(d.name, 'name'); - d = new ViewletDescriptor("moduleId", "ctorName", "id", "name", "class", 5); - assert.strictEqual(d.id, "id"); - assert.strictEqual(d.name, "name"); + d = new ViewletDescriptor('moduleId', 'ctorName', 'id', 'name', 'class', 5); + assert.strictEqual(d.id, 'id'); + assert.strictEqual(d.name, 'name'); }); - test("Viewlet extension point and registration", function() { + test('Viewlet extension point and registration', function () { assert(Types.isFunction(Platform.Registry.as(Extensions.Viewlets).registerViewlet)); assert(Types.isFunction(Platform.Registry.as(Extensions.Viewlets).getViewlet)); assert(Types.isFunction(Platform.Registry.as(Extensions.Viewlets).getViewlets)); let oldCount = Platform.Registry.as(Extensions.Viewlets).getViewlets().length; - let d = new ViewletDescriptor("moduleId", "ctorName", "reg-test-id", "name"); + let d = new ViewletDescriptor('moduleId', 'ctorName', 'reg-test-id', 'name'); Platform.Registry.as(Extensions.Viewlets).registerViewlet(d); - assert(d === Platform.Registry.as(Extensions.Viewlets).getViewlet("reg-test-id")); + assert(d === Platform.Registry.as(Extensions.Viewlets).getViewlet('reg-test-id')); assert.equal(oldCount + 1, Platform.Registry.as(Extensions.Viewlets).getViewlets().length); }); }); \ No newline at end of file diff --git a/src/vs/workbench/test/node/api/extHostDocuments.test.ts b/src/vs/workbench/test/node/api/extHostDocuments.test.ts index 3627c901b06..ef6f277c09e 100644 --- a/src/vs/workbench/test/node/api/extHostDocuments.test.ts +++ b/src/vs/workbench/test/node/api/extHostDocuments.test.ts @@ -13,7 +13,7 @@ import {Range as CodeEditorRange} from 'vs/editor/common/core/range'; import * as EditorCommon from 'vs/editor/common/editorCommon'; -suite("ExtHostDocument", () => { +suite('ExtHostDocument', () => { let data: ExtHostDocumentData; @@ -46,7 +46,7 @@ suite("ExtHostDocument", () => { assert.throws(() => data.document.isUntitled = false); assert.throws(() => data.document.languageId = 'dddd'); assert.throws(() => data.document.lineCount = 9); - }) + }); test('lines', function() { @@ -170,7 +170,7 @@ suite("ExtHostDocument", () => { assertOffsetAt(0, 1, 1); assertOffsetAt(0, 2, 2); assertOffsetAt(1, 0, 25); - }) + }); test('positionAt', function() { assertPositionAt(0, 0, 0); @@ -192,7 +192,7 @@ enum AssertDocumentLineMappingDirection { PositionToOffset } -suite("ExtHostDocument updates line mapping", () => { +suite('ExtHostDocument updates line mapping', () => { function positionToStr(position: { line: number; character: number;}): string { return '(' + position.line + ',' + position.character + ')'; diff --git a/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts b/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts index 0dba0c35683..a7d072af86a 100644 --- a/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts +++ b/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts @@ -7,13 +7,11 @@ import * as assert from 'assert'; import {setUnexpectedErrorHandler, errorHandler} from 'vs/base/common/errors'; -import {create} from 'vs/base/common/types'; import URI from 'vs/base/common/uri'; import * as types from 'vs/workbench/api/node/extHostTypes'; -import {Range as CodeEditorRange} from 'vs/editor/common/core/range'; import * as EditorCommon from 'vs/editor/common/editorCommon'; import {Model as EditorModel} from 'vs/editor/common/model/model'; -import {TestThreadService} from './testThreadService' +import {TestThreadService} from './testThreadService'; import {createInstantiationService as createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {MainProcessMarkerService} from 'vs/platform/markers/common/markerService'; import {IMarkerService} from 'vs/platform/markers/common/markers'; @@ -172,7 +170,7 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerCodeLensProvider(defaultSelector, { provideCodeLenses(): any { - throw new Error('evil') + throw new Error('evil'); } })); disposables.push(extHost.registerCodeLensProvider(defaultSelector, { @@ -325,7 +323,7 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerDefinitionProvider(defaultSelector, { provideDefinition(): any { - throw new Error('evil provider') + throw new Error('evil provider'); } })); disposables.push(extHost.registerDefinitionProvider(defaultSelector, { @@ -351,7 +349,7 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerHoverProvider(defaultSelector, { provideHover(): any { - return new types.Hover('Hello') + return new types.Hover('Hello'); } })); @@ -420,12 +418,12 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerHoverProvider(defaultSelector, { provideHover(): any { - throw new Error('evil') + throw new Error('evil'); } })); disposables.push(extHost.registerHoverProvider(defaultSelector, { provideHover(): any { - return new types.Hover('Hello') + return new types.Hover('Hello'); } })); @@ -445,7 +443,7 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerDocumentHighlightProvider(defaultSelector, { provideDocumentHighlights(): any { - return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))] + return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))]; } })); @@ -465,12 +463,12 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerDocumentHighlightProvider(defaultSelector, { provideDocumentHighlights(): any { - return [] + return []; } })); disposables.push(extHost.registerDocumentHighlightProvider('*', { provideDocumentHighlights(): any { - return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))] + return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))]; } })); @@ -490,12 +488,12 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerDocumentHighlightProvider(defaultSelector, { provideDocumentHighlights(): any { - return [new types.DocumentHighlight(new types.Range(0, 0, 0, 2))] + return [new types.DocumentHighlight(new types.Range(0, 0, 0, 2))]; } })); disposables.push(extHost.registerDocumentHighlightProvider('*', { provideDocumentHighlights(): any { - return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))] + return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))]; } })); @@ -521,7 +519,7 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerDocumentHighlightProvider(defaultSelector, { provideDocumentHighlights(): any { - return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))] + return [new types.DocumentHighlight(new types.Range(0, 0, 0, 4))]; } })); @@ -659,10 +657,10 @@ suite('ExtHostLanguageFeatures', function() { assert.equal(value, undefined); assert.equal(actualArgs.length, 4); - assert.equal(actualArgs[0], true) - assert.equal(actualArgs[1], 1) + assert.equal(actualArgs[0], true); + assert.equal(actualArgs[1], 1); assert.deepEqual(actualArgs[2], { bar: 'boo', foo: 'far' }); - assert.equal(actualArgs[3], null) + assert.equal(actualArgs[3], null); done(); }); }); @@ -702,7 +700,7 @@ suite('ExtHostLanguageFeatures', function() { disposables.push(extHost.registerWorkspaceSymbolProvider({ provideWorkspaceSymbols(): any { - return [new types.SymbolInformation('testing', types.SymbolKind.Array, new types.Range(0, 0, 1, 1))] + return [new types.SymbolInformation('testing', types.SymbolKind.Array, new types.Range(0, 0, 1, 1))]; } })); @@ -803,7 +801,7 @@ suite('ExtHostLanguageFeatures', function() { }, err => { assert.equal(err.message, 'evil'); done(); - }) + }); }); }); @@ -827,8 +825,8 @@ suite('ExtHostLanguageFeatures', function() { suggest(model, { lineNumber: 1, column: 1 }, ',').then(value => { assert.ok(value.length >= 1); // check for min because snippets and others contribute let [first] = value; - assert.equal(first.suggestions.length, 1) - assert.equal(first.suggestions[0].codeSnippet, 'testing2') + assert.equal(first.suggestions.length, 1); + assert.equal(first.suggestions[0].codeSnippet, 'testing2'); done(); }); }); @@ -852,12 +850,12 @@ suite('ExtHostLanguageFeatures', function() { suggest(model, { lineNumber: 1, column: 1 }, ',').then(value => { assert.ok(value.length >= 1); let [first] = value; - assert.equal(first.suggestions.length, 1) - assert.equal(first.suggestions[0].codeSnippet, 'weak-selector') + assert.equal(first.suggestions.length, 1); + assert.equal(first.suggestions[0].codeSnippet, 'weak-selector'); done(); }); }); - }) + }); test('Suggest, order 2/3', function(done) { @@ -878,14 +876,14 @@ suite('ExtHostLanguageFeatures', function() { suggest(model, { lineNumber: 1, column: 1 }, ',').then(value => { assert.ok(value.length >= 2); let [first, second] = value; - assert.equal(first.suggestions.length, 1) - assert.equal(first.suggestions[0].codeSnippet, 'strong-2') // last wins - assert.equal(second.suggestions[0].codeSnippet, 'strong-1') + assert.equal(first.suggestions.length, 1); + assert.equal(first.suggestions[0].codeSnippet, 'strong-2'); // last wins + assert.equal(second.suggestions[0].codeSnippet, 'strong-1'); done(); }); }); }, 5); - }) + }); test('Suggest, evil provider', function(done) { @@ -975,7 +973,7 @@ suite('ExtHostLanguageFeatures', function() { done(); }); }); - }) + }); test('Format Range, + format_doc', function(done) { disposables.push(extHost.registerDocumentRangeFormattingEditProvider(defaultSelector, { @@ -1008,7 +1006,7 @@ suite('ExtHostLanguageFeatures', function() { threadService.sync().then(() => { formatRange(model, { startLineNumber: 1, startColumn: 1, endLineNumber: 1, endColumn: 1 }, { insertSpaces: true, tabSize: 4 }).then(undefined, err => done()); }); - }) + }); test('Format on Type, data conversion', function(done) { diff --git a/src/vs/workbench/test/node/api/extHostTypes.test.ts b/src/vs/workbench/test/node/api/extHostTypes.test.ts index 4b4e8f774ec..6d1c4f4a57b 100644 --- a/src/vs/workbench/test/node/api/extHostTypes.test.ts +++ b/src/vs/workbench/test/node/api/extHostTypes.test.ts @@ -47,13 +47,13 @@ suite('ExtHostTypes', function() { d.dispose(); assert.equal(count, 1); - types.Disposable.from(undefined, { dispose() { count += 1 } }).dispose(); + types.Disposable.from(undefined, { dispose() { count += 1; } }).dispose(); assert.equal(count, 2); assert.throws(() => { new types.Disposable(() => { - throw new Error() + throw new Error(); }).dispose(); }); @@ -77,7 +77,7 @@ suite('ExtHostTypes', function() { test('Position, toJSON', function() { let pos = new types.Position(4, 2); - assertToJSON(pos, { line: 4, character: 2 }) + assertToJSON(pos, { line: 4, character: 2 }); }); test('Position, isBefore(OrEqual)?', function() { @@ -335,7 +335,7 @@ suite('ExtHostTypes', function() { let diag = new types.Diagnostic(new types.Range(0, 1, 2, 3), 'hello'); assertToJSON(diag, { severity: 'Error', message: 'hello', range: [{ line: 0, character: 1 }, { line: 2, character: 3 }] }); - diag.source = 'me' + diag.source = 'me'; assertToJSON(diag, { severity: 'Error', message: 'hello', range: [{ line: 0, character: 1 }, { line: 2, character: 3 }], source: 'me' }); assertToJSON(new types.DocumentHighlight(new types.Range(2, 3, 4, 5)), { range: [{ line: 2, character: 3 }, { line: 4, character: 5 }], kind: 'Text' }); @@ -358,7 +358,7 @@ suite('ExtHostTypes', function() { assertToJSON(new types.CompletionItem('complete'), { label: 'complete' }); let item = new types.CompletionItem('complete'); - item.kind = types.CompletionItemKind.Interface + item.kind = types.CompletionItemKind.Interface; assertToJSON(item, { label: 'complete', kind: 'Interface' }); }); From a862919a89840cd22fe2c97d780fd97e69f9e1c5 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Mon, 11 Apr 2016 09:28:36 +0200 Subject: [PATCH 011/117] Updated i18n translations --- .../src/vs/base/browser/ui/messagelist/messageList.i18n.json | 2 +- .../vs/workbench/electron-browser/main.contribution.i18n.json | 2 +- i18n/deu/src/vs/workbench/electron-main/menus.i18n.json | 2 +- .../workbench/parts/quickopen/browser/commandsHandler.i18n.json | 2 +- i18n/jpn/src/vs/workbench/electron-browser/update.i18n.json | 2 +- .../vs/workbench/electron-browser/main.contribution.i18n.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json index 641f7b5b948..0da16e1b0ad 100644 --- a/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json +++ b/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -10,5 +10,5 @@ "close": "Schließen", "error": "Fehler", "info": "Info", - "warning": "Warnen" + "warning": "Warnung" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json index 7e775d49b4d..45bfef5f82b 100644 --- a/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -7,7 +7,7 @@ "developer": "Entwickler", "file": "Datei", "openFilesInNewWindow": "Wenn diese Option aktiviert ist, werden Dateien in einem neuen Fenster geöffnet anstatt eine vorhandene Instanz wiederzuverwenden.", - "reopenFolders": "Steuert, wie Ordner nach einem Neustart erneut geöffnet werden. Wählen Sie 'Keine' aus, um Ordner nie erneut zu öffnen, \"Einen\", um den zuletzt bearbeiteten Ordner erneut zu öffnen, oder \"Alle\", um alle Ordner der letzten Sitzung erneut zu öffnen.", + "reopenFolders": "Steuert, wie Ordner nach einem Neustart erneut geöffnet werden. Wählen Sie \"none\" aus, um Ordner nie erneut zu öffnen, \"one\", um den zuletzt bearbeiteten Ordner erneut zu öffnen, oder \"all\", um alle Ordner der letzten Sitzung erneut zu öffnen.", "updateChannel": "Konfiguriert den Updatekanal, aus dem Updates empfangen werden. Erfordert einen Neustart nach der Änderung.", "updateConfigurationTitle": "Konfiguration aktualisieren", "view": "Anzeigen", diff --git a/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json b/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json index 91c1ae247c1..130043ba6ab 100644 --- a/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json @@ -51,7 +51,7 @@ "miOpenFile": "&&Datei öffnen...", "miOpenFolder": "&&Ordner öffnen...", "miOpenKeymap": "&&Tastenkombinationen", - "miOpenRecent": "Zuletzt &&verwendete öffnen", + "miOpenRecent": "Zuletzt &&verwendete Dateien öffnen", "miOpenSettings": "&&Benutzereinstellungen", "miOpenSnippets": "&&Benutzercodeausschnitte", "miOpenWorkspaceSettings": "&&Arbeitsbereichseinstellungen", diff --git a/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json index 2bea2a42a5d..9b76924e781 100644 --- a/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -7,7 +7,7 @@ "QuickCommandsAction.label": "Mostrar comandos del editor", "actionNotEnabled": "El comando '{0}' no está habilitado en el contexto actual.", "canNotRun": "El comando '{0}' no puede ejecutarse desde aquí.", - "commandLabel": "{0}:{1}", + "commandLabel": "{0}: {1}", "entryAriaLabel": "{0}, comandos", "entryAriaLabelWithKey": "{0}, {1}, comandos", "noCommandsMatching": "No hay comandos coincidentes", diff --git a/i18n/jpn/src/vs/workbench/electron-browser/update.i18n.json b/i18n/jpn/src/vs/workbench/electron-browser/update.i18n.json index f4548a5ed34..8e4c3821683 100644 --- a/i18n/jpn/src/vs/workbench/electron-browser/update.i18n.json +++ b/i18n/jpn/src/vs/workbench/electron-browser/update.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "downloadLatestAction": "最新ファイルをダウンロード", - "later": "後続", + "later": "後で", "noUpdateLinux": "このバージョンの {0} は古くなっていて自動的に更新できません。手動で最新のバージョンをダウンロードしてインストールしてください。", "noUpdatesAvailable": "現在入手可能な更新はありません。", "releaseNotes": "リリース ノート", diff --git a/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json index 87e350876f3..b46d75768fa 100644 --- a/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -7,7 +7,7 @@ "developer": "Разработчик", "file": "Файл", "openFilesInNewWindow": "Если этот параметр включен, файлы будут открываться в новом окне, а не в существующем экземпляре.", - "reopenFolders": "Управляет повторным открытием папок после перезапуска. Выберите значение \"нет\", чтобы не открывать папку повторно, \"одна\", чтобы открывалась последняя папка, с которой вы работали, или \"все\", чтобы открывались все папки последнего сеанса.", + "reopenFolders": "Управляет повторным открытием папок после перезапуска. Выберите значение \"none\", чтобы не открывать папку повторно, \"one\", чтобы открывалась последняя папка, с которой вы работали, или \"all\", чтобы открывались все папки последнего сеанса.", "updateChannel": "Настройте канал обновления, из которого будете получать обновления. После изменения значения необходимо выполнить перезапуск.", "updateConfigurationTitle": "Настройка обновления", "view": "Просмотреть", From e1cbf08f39a031fc715f84454ca17ebbb81ec6a0 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Mon, 11 Apr 2016 09:57:55 +0200 Subject: [PATCH 012/117] fixes #5133 --- src/vs/base/parts/tree/browser/treeDefaults.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/vs/base/parts/tree/browser/treeDefaults.ts b/src/vs/base/parts/tree/browser/treeDefaults.ts index 3c78b59ef41..91cdb3bb48c 100644 --- a/src/vs/base/parts/tree/browser/treeDefaults.ts +++ b/src/vs/base/parts/tree/browser/treeDefaults.ts @@ -319,11 +319,12 @@ export class DefaultController implements _.IController { tree.clearHighlight(payload); } else { var focus = tree.getFocus(); - tree.collapse(focus).done((didCollapse) => { + tree.collapse(focus).then(didCollapse => { if (focus && !didCollapse) { tree.focusParent(payload); + return tree.reveal(tree.getFocus()); } - }); + }).done(null, errors.onUnexpectedError); } return true; } From 5801d6d9b054a56591e54e6c37925cf41d9ed566 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 10:06:07 +0200 Subject: [PATCH 013/117] undo isNearDeath change, #5117 --- src/vs/workbench/api/node/extHostDocuments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostDocuments.ts b/src/vs/workbench/api/node/extHostDocuments.ts index 85830539723..93c0fab9b81 100644 --- a/src/vs/workbench/api/node/extHostDocuments.ts +++ b/src/vs/workbench/api/node/extHostDocuments.ts @@ -294,7 +294,7 @@ export class ExtHostDocumentData extends MirrorModel2 { } get isDocumentReferenced(): boolean { - return this._documentRef && !weak.isNearDeath(this._documentRef) && !weak.isDead(this._documentRef) ; + return this._documentRef && !weak.isDead(this._documentRef) ; } _acceptLanguageId(newLanguageId: string): void { From b70a6d0c0d05ca4d674241e0816e81e7b00e9add Mon Sep 17 00:00:00 2001 From: Yuki Ueda Date: Mon, 11 Apr 2016 17:15:11 +0900 Subject: [PATCH 014/117] Remove the space between the period I think, this space might not be necessary. --- src/vs/workbench/api/node/extHostDocuments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostDocuments.ts b/src/vs/workbench/api/node/extHostDocuments.ts index 93c0fab9b81..9c504109e75 100644 --- a/src/vs/workbench/api/node/extHostDocuments.ts +++ b/src/vs/workbench/api/node/extHostDocuments.ts @@ -294,7 +294,7 @@ export class ExtHostDocumentData extends MirrorModel2 { } get isDocumentReferenced(): boolean { - return this._documentRef && !weak.isDead(this._documentRef) ; + return this._documentRef && !weak.isDead(this._documentRef); } _acceptLanguageId(newLanguageId: string): void { From 8b9070e249f61e56e0356335ffc99118eea2d518 Mon Sep 17 00:00:00 2001 From: xzper Date: Mon, 11 Apr 2016 16:46:51 +0800 Subject: [PATCH 015/117] Fix contextmenu position when zoom in/out --- .../contextview/electron-browser/contextmenuService.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts b/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts index cd7dd829839..9512b7408b4 100644 --- a/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts +++ b/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts @@ -16,7 +16,7 @@ import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {IMessageService} from 'vs/platform/message/common/message'; import {IKeybindingService} from 'vs/platform/keybinding/common/keybindingService'; -import {remote} from 'electron'; +import {remote, webFrame} from 'electron'; export class ContextMenuService implements IContextMenuService { @@ -78,6 +78,10 @@ export class ContextMenuService implements IContextMenuService { x = pos.x; y = pos.y; } + + let zoom = webFrame.getZoomFactor(); + x *= zoom; + y *= zoom; menu.popup(remote.getCurrentWindow(), Math.floor(x), Math.floor(y)); @@ -97,4 +101,4 @@ export class ContextMenuService implements IContextMenuService { }) .done(null, e => this.messageService.show(severity.Error, e)); } -} \ No newline at end of file +} From c48212f8e09c4658577576dd997e66617e599f45 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 10:57:14 +0200 Subject: [PATCH 016/117] bump version to 1.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8a963ddf678..c538a5e278e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Code", - "version": "0.10.12", + "version": "1.0.0", "electronVersion": "0.35.6", "author": { "name": "Microsoft Corporation" From 5b10e423a17b3ad227298ab05ec289605e49f0fc Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Mon, 11 Apr 2016 11:14:48 +0200 Subject: [PATCH 017/117] adjust textarea maxlength --- src/vs/workbench/parts/feedback/browser/feedback.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/parts/feedback/browser/feedback.ts b/src/vs/workbench/parts/feedback/browser/feedback.ts index 873d735a0cb..cf9c0e1285d 100644 --- a/src/vs/workbench/parts/feedback/browser/feedback.ts +++ b/src/vs/workbench/parts/feedback/browser/feedback.ts @@ -215,6 +215,7 @@ export class FeedbackDropdown extends Dropdown { this.sentiment = smile ? 1 : 0; this.maxFeedbackCharacters = this.feedbackService.getCharacterLimit(this.sentiment); this.updateCharCountText(); + $(this.feedbackDescriptionInput).attr({ maxlength: this.maxFeedbackCharacters }); } protected invoke(element: Builder, callback: () => void): Builder { From 20209812db6d0c8c2bf47b10b42ffea3438456e0 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 11:16:07 +0200 Subject: [PATCH 018/117] cancel reference search promise on widget close, fixes #5100 --- .../contrib/referenceSearch/browser/referenceSearch.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts b/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts index 21f608e9586..45722ba4e5e 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts @@ -120,6 +120,7 @@ export class FindReferencesController implements editorCommon.IEditorContributio this.widget.show(range, 18); this.callOnClear.push(this.widget.addListener(Events.Closed, () => { this.widget = null; + referencesPromise.cancel(); this.clear(); })); this.callOnClear.push(this.widget.addListener(ReferenceWidget.Events.EditorDoubleClick, (event:any) => { @@ -148,8 +149,8 @@ export class FindReferencesController implements editorCommon.IEditorContributio referencesPromise.then((references:IReference[]) => { - // still current request? - if(requestId !== this.requestIdPool) { + // still current request? widget still open? + if(requestId !== this.requestIdPool || !this.widget) { timer.stop(); return; } From 189f411c26d66da92c835b5b61bfa082de72b65f Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 11:23:14 +0200 Subject: [PATCH 019/117] :liptsick: tuple types and destructuring --- .../contrib/referenceSearch/browser/referenceSearch.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts b/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts index 45722ba4e5e..f19b5054cfd 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts @@ -300,11 +300,9 @@ function metaTitle(references: IReference[]): string { } } -let findReferencesCommand: ICommandHandler = (accessor, args) => { - - let resource = args[0]; - let position = args[1]; +let findReferencesCommand: ICommandHandler = (accessor, args:[URI, editorCommon.IPosition]) => { + let [resource, position] = args; if (!(resource instanceof URI)) { throw new Error('illegal argument, uri'); } From edc2d3fa5b1ab92edab29cd87d7e87c049896063 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 12:12:21 +0200 Subject: [PATCH 020/117] use isWeakRef as existence check for document references, #5117 --- src/vs/workbench/api/node/extHostDocuments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostDocuments.ts b/src/vs/workbench/api/node/extHostDocuments.ts index 9c504109e75..d70c8f25467 100644 --- a/src/vs/workbench/api/node/extHostDocuments.ts +++ b/src/vs/workbench/api/node/extHostDocuments.ts @@ -294,7 +294,7 @@ export class ExtHostDocumentData extends MirrorModel2 { } get isDocumentReferenced(): boolean { - return this._documentRef && !weak.isDead(this._documentRef); + return weak.isWeakRef(this._documentRef) && !weak.isDead(this._documentRef); } _acceptLanguageId(newLanguageId: string): void { From 93ba880a9e6af40e9123a13837e5a0c65266ca6e Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 14:58:16 +0200 Subject: [PATCH 021/117] better warning logging --- src/vs/workbench/api/node/extHostDiagnostics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostDiagnostics.ts b/src/vs/workbench/api/node/extHostDiagnostics.ts index e38853a228c..278050aae9b 100644 --- a/src/vs/workbench/api/node/extHostDiagnostics.ts +++ b/src/vs/workbench/api/node/extHostDiagnostics.ts @@ -86,7 +86,7 @@ export class DiagnosticCollection implements vscode.DiagnosticCollection { // no more than 250 diagnostics per file if (diagnostics.length > DiagnosticCollection._maxDiagnosticsPerFile) { - console.warn('diagnostics for %s will be capped to %d (actually is %d)', uri, DiagnosticCollection._maxDiagnosticsPerFile, diagnostics.length); + console.warn('diagnostics for %s will be capped to %d (actually is %d)', uri.toString(), DiagnosticCollection._maxDiagnosticsPerFile, diagnostics.length); diagnostics = diagnostics.slice(0, DiagnosticCollection._maxDiagnosticsPerFile); } marker = diagnostics.map(DiagnosticCollection._toMarkerData); From 4fc3951d9223e7c2e74bf26fac54d5fdb351a565 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 11 Apr 2016 15:48:13 +0200 Subject: [PATCH 022/117] [loc][Query][VSCode] Please clarify whether this should be locked "{0}, git branch" (fixes #5159) --- src/vs/workbench/parts/git/browser/gitQuickOpen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/git/browser/gitQuickOpen.ts b/src/vs/workbench/parts/git/browser/gitQuickOpen.ts index 19f94211fe2..72519620789 100644 --- a/src/vs/workbench/parts/git/browser/gitQuickOpen.ts +++ b/src/vs/workbench/parts/git/browser/gitQuickOpen.ts @@ -95,7 +95,7 @@ class BranchEntry extends model.QuickOpenEntry { public getIcon(): string { return 'git'; } public getLabel(): string { return this.name; } - public getAriaLabel(): string { return nls.localize('branchAriaLabel', "{0}, git branch", this.getLabel()); } + public getAriaLabel(): string { return nls.localize({ key: 'branchAriaLabel', comment: ['the branch name'] }, "{0}, git branch", this.getLabel()); } public getDescription(): string { return nls.localize('createBranch', "Create branch {0}", this.name); } public run(mode: quickopen.Mode, context: model.IContext):boolean { From 045ff8db5c34fa2a156ac866857eb6004c42cb9c Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:53:19 +0200 Subject: [PATCH 023/117] [bat] colorize tests --- .../bat/test/colorize-fixtures/test.bat | 28 ++ .../bat/test/colorize-results/test_bat.json | 398 ++++++++++++++++++ 2 files changed, 426 insertions(+) create mode 100644 extensions/bat/test/colorize-fixtures/test.bat create mode 100644 extensions/bat/test/colorize-results/test_bat.json diff --git a/extensions/bat/test/colorize-fixtures/test.bat b/extensions/bat/test/colorize-fixtures/test.bat new file mode 100644 index 00000000000..f5ae5d25119 --- /dev/null +++ b/extensions/bat/test/colorize-fixtures/test.bat @@ -0,0 +1,28 @@ +@echo off +setlocal + +title VSCode Dev + +pushd %~dp0\.. + +:: Node modules +if not exist node_modules call .\scripts\npm.bat install + +:: Get electron +node .\node_modules\gulp\bin\gulp.js electron + +:: Build +if not exist out node .\node_modules\gulp\bin\gulp.js compile + +:: Configuration +set NODE_ENV=development +set VSCODE_DEV=1 +set ELECTRON_DEFAULT_ERROR_MODE=1 +set ELECTRON_ENABLE_LOGGING=1 +set ELECTRON_ENABLE_STACK_DUMPING=1 + +:: Launch Code +.\.build\electron\electron.exe . %* +popd + +endlocal \ No newline at end of file diff --git a/extensions/bat/test/colorize-results/test_bat.json b/extensions/bat/test/colorize-results/test_bat.json new file mode 100644 index 00000000000..b137c903533 --- /dev/null +++ b/extensions/bat/test/colorize-results/test_bat.json @@ -0,0 +1,398 @@ +[ + { + "c": "@", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "echo", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " off", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "setlocal", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": "title", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " VSCode Dev", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "pushd", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "%", + "t": "dosbatch.variable.parameter.function.begin.shell", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter" + } + }, + { + "c": "~dp0", + "t": "dosbatch.variable.parameter.function", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter" + } + }, + { + "c": "\\..", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": ":: Node modules", + "t": "dosbatch.comment.line.colons", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + } + }, + { + "c": "if not exist", + "t": "keyword.dosbatch.control.conditional.if", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control" + } + }, + { + "c": " node_modules ", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "call", + "t": "keyword.dosbatch.control.statement", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control" + } + }, + { + "c": " .\\scripts\\npm.bat install", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": ":: Get electron", + "t": "dosbatch.comment.line.colons", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + } + }, + { + "c": "node .\\node_modules\\gulp\\bin\\gulp.js electron", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": ":: Build", + "t": "dosbatch.comment.line.colons", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + } + }, + { + "c": "if not exist", + "t": "keyword.dosbatch.control.conditional.if", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control" + } + }, + { + "c": " out node .\\node_modules\\gulp\\bin\\gulp.js compile", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": ":: Configuration", + "t": "dosbatch.comment.line.colons", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + } + }, + { + "c": "set", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " NODE_ENV=development", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "set", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " VSCODE_DEV=1", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "set", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " ELECTRON_DEFAULT_ERROR_MODE=1", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "set", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " ELECTRON_ENABLE_LOGGING=1", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "set", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": " ELECTRON_ENABLE_STACK_DUMPING=1", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": ":: Launch Code", + "t": "dosbatch.comment.line.colons", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + } + }, + { + "c": ".\\.build\\electron\\electron.exe . %*", + "t": "", + "r": { + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token", + "light_plus": ".vs .token", + "dark_plus": ".vs-dark .token" + } + }, + { + "c": "popd", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + }, + { + "c": "endlocal", + "t": "keyword.command.dosbatch", + "r": { + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + } + } +] \ No newline at end of file From de555832a481c18f8e554e4c0c2abe725bbe4984 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:53:49 +0200 Subject: [PATCH 024/117] [clojure] colorize tests --- .../clojure/test/colorize-fixtures/test.clj | 52 + .../test/colorize-results/test_clj.json | 3489 +++++++++++++++++ 2 files changed, 3541 insertions(+) create mode 100644 extensions/clojure/test/colorize-fixtures/test.clj create mode 100644 extensions/clojure/test/colorize-results/test_clj.json diff --git a/extensions/clojure/test/colorize-fixtures/test.clj b/extensions/clojure/test/colorize-fixtures/test.clj new file mode 100644 index 00000000000..4abe930a2cb --- /dev/null +++ b/extensions/clojure/test/colorize-fixtures/test.clj @@ -0,0 +1,52 @@ +;; from http://clojure-doc.org/articles/tutorials/introduction.html + +(require '[clojure.string :as str]) +(def the-answer 42) +[1 2 3] ; A vector +[1 :two "three"] +{:a 1 :b 2} +#{:a :b :c} +'(1 2 3) +(def my-stuff ["shirt" "coat" "hat"]) ; this is more typical usage. + +(my-func (my-func2 arg1 + arg2) + (other-func arg-a + (foo-bar arg-x + arg-y + (+ arg-xx + arg-yy + arg-zz)) + arg-b)) +'(+ 1 2 3) +;; ⇒ (+ 1 2 3) +(let [width 10 + height 20 + thickness 2] + (println "hello from inside the `let`.") + (* width + height + thickness)) + +;; Vectors +(def v [:a :b :c]) +(def li '(:a :b :c)) +(conj v :d) ; ⇒ [:a :b :c :d] +(conj li :d) ; ⇒ (:d :a :b :c) + +v ; ⇒ is still [:a :b :c] +li ; ⇒ is still (:a :b :c) + +;; Maps +(def m {:a 1 :b 2}) +(assoc m :c 3) ; ⇒ {:a 1 :c 3 :b 2} +(dissoc m :b) ; ⇒ {:a 1} + +(def my-atom (atom {:foo 1})) +;; ⇒ #'user/my-atom +@my-atom +;; ⇒ {:foo 1} +(swap! my-atom update-in [:foo] inc) +;; ⇒ {:foo 2} +@my-atom +;; ⇒ {:foo 2} \ No newline at end of file diff --git a/extensions/clojure/test/colorize-results/test_clj.json b/extensions/clojure/test/colorize-results/test_clj.json new file mode 100644 index 00000000000..9776e0e23cd --- /dev/null +++ b/extensions/clojure/test/colorize-results/test_clj.json @@ -0,0 +1,3489 @@ +[ + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; from http://clojure-doc.org/articles/tutorials/introduction.html", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "require", + "t": "clojure.meta.expression.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " '", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "clojure", + "t": "clojure.meta.expression.vector.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "string", + "t": "clojure.meta.expression.vector.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":as", + "t": "clojure.meta.expression.keyword.vector.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "str", + "t": "clojure.meta.expression.vector.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "clojure.definition.meta.expression.keyword.control.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "the-answer", + "t": "clojure.definition.meta.expression.global.entity", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "42", + "t": "clojure.definition.meta.expression.constant.global.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.meta.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "clojure.meta.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "clojure.meta.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " A vector", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "[", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.meta.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":two", + "t": "clojure.meta.keyword.vector.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.begin.vector.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "three", + "t": "clojure.meta.vector.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.vector.end.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "clojure.meta.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "clojure.meta.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":a", + "t": "clojure.meta.keyword.constant.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.meta.constant.numeric.decimal.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":b", + "t": "clojure.meta.keyword.constant.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "clojure.meta.constant.numeric.decimal.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "}", + "t": "clojure.meta.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#{", + "t": "clojure.meta.set", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":a", + "t": "clojure.meta.keyword.constant.set", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.set", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":b", + "t": "clojure.meta.keyword.constant.set", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.set", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":c", + "t": "clojure.meta.keyword.constant.set", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}", + "t": "clojure.meta.set", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'(", + "t": "clojure.punctuation.meta.expression.section.begin.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "clojure.definition.meta.expression.keyword.control.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my-stuff", + "t": "clojure.definition.meta.expression.global.entity", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.begin.vector.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "shirt", + "t": "clojure.definition.meta.expression.vector.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.vector.end.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.begin.vector.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "coat", + "t": "clojure.definition.meta.expression.vector.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.vector.end.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.begin.vector.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "hat", + "t": "clojure.definition.meta.expression.vector.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.vector.end.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " this is more typical usage.", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "func", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "func2", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg1", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg2", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "other", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "func", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-a", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bar", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-x", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-y", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+ ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "xx", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "yy", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "zz", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arg", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-b", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'(", + "t": "clojure.punctuation.meta.expression.section.begin.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+ ", + "t": "clojure.meta.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; ⇒ (+ 1 2 3)", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "let", + "t": "clojure.meta.expression.control.storage", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "clojure.meta.expression.vector.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "clojure.meta.expression.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "height", + "t": "clojure.meta.expression.vector.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20", + "t": "clojure.meta.expression.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "thickness", + "t": "clojure.meta.expression.vector.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "clojure.meta.expression.vector.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "println", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.begin.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "hello from inside the `let`.", + "t": "clojure.meta.expression.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "clojure.punctuation.definition.meta.expression.end.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "* ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "height", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "thickness", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; Vectors", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "clojure.definition.meta.expression.keyword.control.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "v", + "t": "clojure.definition.meta.expression.global.entity", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":a", + "t": "clojure.definition.meta.expression.keyword.vector.constant.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":b", + "t": "clojure.definition.meta.expression.keyword.vector.constant.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":c", + "t": "clojure.definition.meta.expression.keyword.vector.constant.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "]", + "t": "clojure.definition.meta.expression.vector.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "clojure.definition.meta.expression.keyword.control.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "li", + "t": "clojure.definition.meta.expression.global.entity", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'(", + "t": "clojure.punctuation.definition.meta.expression.section.begin.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":a", + "t": "clojure.definition.meta.expression.keyword.constant.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":b", + "t": "clojure.definition.meta.expression.keyword.constant.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":c", + "t": "clojure.definition.meta.expression.keyword.constant.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": ")", + "t": "clojure.punctuation.definition.meta.expression.section.end.global.qouted-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "conj", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " v ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":d", + "t": "clojure.meta.expression.keyword.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ⇒ [:a :b :c :d]", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "conj", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "li", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":d", + "t": "clojure.meta.expression.keyword.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ⇒ (:d :a :b :c)", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "v ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ⇒ is still [:a :b :c]", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "li", + "t": "clojure.meta.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ⇒ is still (:a :b :c)", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; Maps", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "clojure.definition.meta.expression.keyword.control.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "m", + "t": "clojure.definition.meta.expression.global.entity", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":a", + "t": "clojure.definition.meta.expression.keyword.constant.global.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.definition.meta.expression.constant.global.numeric.decimal.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":b", + "t": "clojure.definition.meta.expression.keyword.constant.global.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "clojure.definition.meta.expression.constant.global.numeric.decimal.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "}", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "assoc", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " m ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":c", + "t": "clojure.meta.expression.keyword.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "clojure.meta.expression.constant.numeric.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ⇒ {:a 1 :c 3 :b 2}", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "dissoc", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " m ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":b", + "t": "clojure.meta.expression.keyword.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ⇒ {:a 1}", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "clojure.definition.meta.expression.keyword.control.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my-atom", + "t": "clojure.definition.meta.expression.global.entity", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "clojure.punctuation.definition.meta.expression.section.begin.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "atom", + "t": "clojure.definition.meta.expression.symbol.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":foo", + "t": "clojure.definition.meta.expression.keyword.constant.global.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "clojure.definition.meta.expression.constant.global.numeric.decimal.map", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "}", + "t": "clojure.definition.meta.expression.global.map", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.definition.meta.expression.section.end.global", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; ⇒ #'user/my-atom", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "clojure.meta.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "atom", + "t": "clojure.meta.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; ⇒ {:foo 1}", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "(", + "t": "clojure.punctuation.meta.expression.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "swap", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "! ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "atom", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "update", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":foo", + "t": "clojure.meta.expression.keyword.vector.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "]", + "t": "clojure.meta.expression.vector", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "clojure.meta.expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "inc", + "t": "clojure.meta.expression.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "clojure.punctuation.meta.expression.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; ⇒ {:foo 2}", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "clojure.meta.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "atom", + "t": "clojure.meta.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.clojure.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "; ⇒ {:foo 2}", + "t": "comment.line.semicolon.clojure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + } +] \ No newline at end of file From 4ad359a330b7f2bdc7c9fd538e34dda30a4b6777 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:54:58 +0200 Subject: [PATCH 025/117] exclude colorize-fixtures from hygiene --- build/gulpfile.hygiene.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/gulpfile.hygiene.js b/build/gulpfile.hygiene.js index efe027c99c0..a6bf42dde93 100644 --- a/build/gulpfile.hygiene.js +++ b/build/gulpfile.hygiene.js @@ -54,7 +54,8 @@ var indentationFilter = [ '!**/vs/loader.js', '!extensions/**/snippets/**', '!extensions/**/syntaxes/**', - '!extensions/**/themes/**' + '!extensions/**/themes/**', + '!extensions/**/colorize-fixtures/**' ]; var copyrightFilter = [ From 0f32c8e95021bc9546481880a9021931618c700f Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:55:31 +0200 Subject: [PATCH 026/117] [coffescript] tokenizer tests --- .../test/colorize-fixtures/test.coffee | 28 + .../test/colorize-results/test_coffee.json | 1498 +++++++++++++++++ 2 files changed, 1526 insertions(+) create mode 100644 extensions/coffeescript/test/colorize-fixtures/test.coffee create mode 100644 extensions/coffeescript/test/colorize-results/test_coffee.json diff --git a/extensions/coffeescript/test/colorize-fixtures/test.coffee b/extensions/coffeescript/test/colorize-fixtures/test.coffee new file mode 100644 index 00000000000..f9ac126039d --- /dev/null +++ b/extensions/coffeescript/test/colorize-fixtures/test.coffee @@ -0,0 +1,28 @@ +""" +A CoffeeScript sample. +""" + +class Vehicle + constructor: (@name) => + + drive: () => + alert "Drive #{@name}" + +class Car extends Vehicle + drive: () => + alert "Driving #{@name}" + +c = new Car "Volvo" + +while onTheRoad() + c.drive() + +vehicles = (new Car for i in [1..100]) + +startRace = (vehicles) -> [vehicle.drive() for vehicle in vehicles] + +fancyRegExp = /// + (\d+) # numbers + (\w*) # letters + $ # the end +/// diff --git a/extensions/coffeescript/test/colorize-results/test_coffee.json b/extensions/coffeescript/test/colorize-results/test_coffee.json new file mode 100644 index 00000000000..2bca84f410f --- /dev/null +++ b/extensions/coffeescript/test/colorize-results/test_coffee.json @@ -0,0 +1,1498 @@ +[ + { + "c": "\"\"\"", + "t": "string.quoted.double.heredoc.coffee.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "A CoffeeScript sample.", + "t": "string.quoted.double.heredoc.coffee", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"\"\"", + "t": "string.quoted.double.heredoc.coffee.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "class", + "t": "coffee.meta.class.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "coffee.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Vehicle", + "t": "coffee.meta.class.type.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "constructor", + "t": "coffee.meta.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@name", + "t": "coffee.meta.function.inline.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "coffee.meta.function.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=>", + "t": "coffee.meta.storage.type.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "drive", + "t": "coffee.meta.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "coffee.meta.function.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=>", + "t": "coffee.meta.storage.type.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " alert ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.quoted.double.coffee.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Drive ", + "t": "string.quoted.double.coffee", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "#{", + "t": "string.quoted.double.coffee.punctuation.begin.meta.embedded.line.section", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "@", + "t": "string.quoted.double.coffee.punctuation.definition.meta.variable.embedded.line.source.other.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "name", + "t": "string.quoted.double.coffee.meta.variable.embedded.line.source.other.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "}", + "t": "string.quoted.double.coffee.punctuation.end.meta.embedded.line.section.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.quoted.double.coffee.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "class", + "t": "coffee.meta.class.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "coffee.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Car", + "t": "coffee.meta.class.type.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "coffee.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "extends", + "t": "coffee.meta.class.keyword.control.inheritance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "coffee.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Vehicle", + "t": "coffee.meta.class.entity.other.inherited-class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "drive", + "t": "coffee.meta.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "coffee.meta.function.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=>", + "t": "coffee.meta.storage.type.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " alert ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.quoted.double.coffee.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Driving ", + "t": "string.quoted.double.coffee", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "#{", + "t": "string.quoted.double.coffee.punctuation.begin.meta.embedded.line.section", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "@", + "t": "string.quoted.double.coffee.punctuation.definition.meta.variable.embedded.line.source.other.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "name", + "t": "string.quoted.double.coffee.meta.variable.embedded.line.source.other.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "}", + "t": "string.quoted.double.coffee.punctuation.end.meta.embedded.line.section.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.quoted.double.coffee.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "c", + "t": "coffee.variable.other.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "coffee.meta.class.keyword.operator.instance.constructor.new", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new" + } + }, + { + "c": " ", + "t": "meta.class.instance.constructor", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Car", + "t": "coffee.meta.class.type.entity.name.instance.constructor", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.quoted.double.coffee.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Volvo", + "t": "string.quoted.double.coffee", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.quoted.double.coffee.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "while", + "t": "coffee.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " onTheRoad", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "coffee.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " c", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "coffee.meta.delimiter.method.period", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "drive", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "coffee.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "vehicles", + "t": "coffee.variable.other.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "coffee.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "coffee.meta.class.keyword.operator.instance.constructor.new", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new" + } + }, + { + "c": " ", + "t": "meta.class.instance.constructor", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Car", + "t": "coffee.meta.class.type.entity.name.instance.constructor", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "coffee.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " i ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in", + "t": "coffee.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "coffee.meta.brace.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "coffee.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "..", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "100", + "t": "coffee.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "coffee.meta.brace.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "coffee.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "startRace ", + "t": "coffee.meta.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "vehicles", + "t": "coffee.meta.function.inline.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "coffee.meta.function.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "->", + "t": "coffee.meta.storage.type.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "coffee.meta.brace.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "vehicle", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "coffee.meta.delimiter.method.period", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "drive", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "coffee.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "coffee.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " vehicle ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in", + "t": "coffee.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " vehicles", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "coffee.meta.brace.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fancyRegExp", + "t": "coffee.variable.other.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "///", + "t": "string.coffee.punctuation.definition.begin.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\t", + "t": "string.coffee.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "(", + "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\d", + "t": "string.coffee.meta.constant.regexp.block.group.character.character-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "+", + "t": "string.coffee.meta.keyword.operator.regexp.block.group.quantifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\t", + "t": "string.coffee.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "#", + "t": "string.coffee.punctuation.definition.line.regexp.block.comment.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": " numbers", + "t": "string.coffee.line.regexp.block.comment.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\t", + "t": "string.coffee.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "(", + "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\w", + "t": "string.coffee.meta.constant.regexp.block.group.character.character-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "*", + "t": "string.coffee.meta.keyword.operator.regexp.block.group.quantifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\t", + "t": "string.coffee.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "#", + "t": "string.coffee.punctuation.definition.line.regexp.block.comment.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": " letters", + "t": "string.coffee.line.regexp.block.comment.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\t", + "t": "string.coffee.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "$", + "t": "string.coffee.keyword.control.regexp.block.anchor", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "\t\t", + "t": "string.coffee.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "#", + "t": "string.coffee.punctuation.definition.line.regexp.block.comment.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": " the end", + "t": "string.coffee.line.regexp.block.comment.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "///", + "t": "string.coffee.punctuation.definition.end.regexp.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + } +] \ No newline at end of file From 4f3dfc420feb0736c1f678b9e658ea6b5f61a9e7 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:55:49 +0200 Subject: [PATCH 027/117] [c] colorizer tests --- extensions/cpp/test/colorize-fixtures/test.c | 30 + extensions/cpp/test/colorize-fixtures/test.cc | 27 + .../cpp/test/colorize-fixtures/test.cpp | 22 + .../cpp/test/colorize-results/test_c.json | 1553 +++++++++++++++++ .../cpp/test/colorize-results/test_cc.json | 1520 ++++++++++++++++ .../cpp/test/colorize-results/test_cpp.json | 1025 +++++++++++ 6 files changed, 4177 insertions(+) create mode 100644 extensions/cpp/test/colorize-fixtures/test.c create mode 100644 extensions/cpp/test/colorize-fixtures/test.cc create mode 100644 extensions/cpp/test/colorize-fixtures/test.cpp create mode 100644 extensions/cpp/test/colorize-results/test_c.json create mode 100644 extensions/cpp/test/colorize-results/test_cc.json create mode 100644 extensions/cpp/test/colorize-results/test_cpp.json diff --git a/extensions/cpp/test/colorize-fixtures/test.c b/extensions/cpp/test/colorize-fixtures/test.c new file mode 100644 index 00000000000..1fead178518 --- /dev/null +++ b/extensions/cpp/test/colorize-fixtures/test.c @@ -0,0 +1,30 @@ +/* C Program to find roots of a quadratic equation when coefficients are entered by user. */ +/* Library function sqrt() computes the square root. */ + +#include +#include /* This is needed to use sqrt() function.*/ +int main() +{ + float a, b, c, determinant, r1,r2, real, imag; + printf("Enter coefficients a, b and c: "); + scanf("%f%f%f",&a,&b,&c); + determinant=b*b-4*a*c; + if (determinant>0) + { + r1= (-b+sqrt(determinant))/(2*a); + r2= (-b-sqrt(determinant))/(2*a); + printf("Roots are: %.2f and %.2f",r1 , r2); + } + else if (determinant==0) + { + r1 = r2 = -b/(2*a); + printf("Roots are: %.2f and %.2f", r1, r2); + } + else + { + real= -b/(2*a); + imag = sqrt(-determinant)/(2*a); + printf("Roots are: %.2f+%.2fi and %.2f-%.2fi", real, imag, real, imag); + } + return 0; +} \ No newline at end of file diff --git a/extensions/cpp/test/colorize-fixtures/test.cc b/extensions/cpp/test/colorize-fixtures/test.cc new file mode 100644 index 00000000000..578c2e44685 --- /dev/null +++ b/extensions/cpp/test/colorize-fixtures/test.cc @@ -0,0 +1,27 @@ +#if B4G_DEBUG_CHECK + fprintf(stderr,"num_candidate_ret=%d:", num_candidate); + for(int i=0;i o(new O); + // sadness. + + sprintf(options, "STYLE=Keramik;TITLE=%s;THEME=%s", ...); +} + + +int main2() { + printf(";"); + // the rest of + asm("movw $0x38, %ax; ltr %ax"); + fn("{};"); + + // the rest of +} \ No newline at end of file diff --git a/extensions/cpp/test/colorize-fixtures/test.cpp b/extensions/cpp/test/colorize-fixtures/test.cpp new file mode 100644 index 00000000000..aa18e08cca8 --- /dev/null +++ b/extensions/cpp/test/colorize-fixtures/test.cpp @@ -0,0 +1,22 @@ +// classes example +#include +using namespace std; + +class Rectangle { + int width, height; + public: + void set_values (int,int); + int area() {return width*height;} +}; + +void Rectangle::set_values (int x, int y) { + width = x; + height = y; +} + +int main () { + Rectangle rect; + rect.set_values (3,4); + cout << "area: " << rect.area(); + return 0; +} \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_c.json b/extensions/cpp/test/colorize-results/test_c.json new file mode 100644 index 00000000000..dec8cd274ef --- /dev/null +++ b/extensions/cpp/test/colorize-results/test_c.json @@ -0,0 +1,1553 @@ +[ + { + "c": "/*", + "t": "comment.block.c.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " C Program to find roots of a quadratic equation when coefficients are entered by user. ", + "t": "comment.block.c", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.c.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.c.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Library function sqrt() computes the square root. ", + "t": "comment.block.c", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.c.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "c.meta.preprocessor.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "include", + "t": "c.meta.preprocessor.include.keyword.control.import", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "c.meta.preprocessor.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "<", + "t": "c.punctuation.definition.begin.meta.preprocessor.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "stdio.h", + "t": "c.meta.preprocessor.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": ">", + "t": "c.punctuation.definition.end.meta.preprocessor.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "#", + "t": "c.meta.preprocessor.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "include", + "t": "c.meta.preprocessor.include.keyword.control.import", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "c.meta.preprocessor.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "<", + "t": "c.punctuation.definition.begin.meta.preprocessor.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "math.h", + "t": "c.meta.preprocessor.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": ">", + "t": "c.punctuation.definition.end.meta.preprocessor.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": " ", + "t": "c.meta.preprocessor.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "/*", + "t": "comment.block.c.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " This is needed to use sqrt() function.", + "t": "comment.block.c", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.c.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "int", + "t": "c.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "c.punctuation.meta.function.whitespace.leading", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "main", + "t": "c.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "c.punctuation.begin.meta.function.parens.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "c.punctuation.end.meta.function.parens.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.c.punctuation.begin.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "float", + "t": "block.c.meta.storage.type.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " a, b, c, determinant, r1,r2, real, imag;", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "printf", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Enter coefficients a, b and c: ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "scanf", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%f%f%f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",&a,&b,&c);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " determinant=b*b-", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "*a*c;", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.c.meta.keyword.control.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.c.meta.function.initialization", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.punctuation.definition.meta.function.initialization.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "determinant>", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.c.punctuation.begin.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " r1= (-b+", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sqrt", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(determinant))/(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "*a);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " r2= (-b-", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sqrt", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(determinant))/(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "*a);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "printf", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Roots are: ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " and ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",r1 , r2);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.c.punctuation.end.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "block.c.meta.keyword.control.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.c.meta.keyword.control.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.c.meta.function.initialization", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.punctuation.definition.meta.function.initialization.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "determinant==", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.c.punctuation.begin.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " r1 = r2 = -b/(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "*a);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "printf", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Roots are: ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " and ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", r1, r2);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.c.punctuation.end.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "block.c.meta.keyword.control.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.c.punctuation.begin.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " real= -b/(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "*a);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " imag =", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "sqrt", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(-determinant)/(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "*a);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "printf", + "t": "block.c.meta.function.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Roots are: ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "+", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "i and ", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "-", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%.2f", + "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "i", + "t": "block.c.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", real, imag, real, imag);", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.c.punctuation.end.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.c.meta.keyword.control.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.c.meta.function.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.c.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.c.punctuation.end.meta.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_cc.json b/extensions/cpp/test/colorize-results/test_cc.json new file mode 100644 index 00000000000..13a64fe46e2 --- /dev/null +++ b/extensions/cpp/test/colorize-results/test_cc.json @@ -0,0 +1,1520 @@ +[ + { + "c": "#", + "t": "meta.preprocessor.c", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "if", + "t": "meta.preprocessor.c.keyword.control.import", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " B4G_DEBUG_CHECK", + "t": "meta.preprocessor.c", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "fprintf", + "t": "meta.c.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.punctuation.parens.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "stderr,", + "t": "meta.c.function.parens", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.parens.begin.string.quoted.double.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "num_candidate_ret=", + "t": "meta.c.function.parens.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%d", + "t": "meta.c.function.parens.string.quoted.double.constant.other.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ":", + "t": "meta.c.function.parens.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.parens.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", num_candidate", + "t": "meta.c.function.parens", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.c.function.punctuation.parens.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "c.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "c.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " i=", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "c.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";i", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.function-call", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "o", + "t": "meta.c.function.block.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.block.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "meta.c.keyword.control.function.block.c++", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " O);", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.comment.c++", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "//", + "t": "meta.c.function.punctuation.definition.block.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " sadness.", + "t": "meta.c.function.block.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "sprintf", + "t": "meta.c.function.block.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(options, ", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "STYLE=Keramik;TITLE=", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%s", + "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";THEME=", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%s", + "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ...);", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.c.function.punctuation.section.end.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "c.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "main2", + "t": "meta.c.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.punctuation.parens.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.c.function.punctuation.parens.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.c.function.punctuation.section.begin.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.support", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "printf", + "t": "meta.c.function.block.support.clib", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.comment.c++", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "//", + "t": "meta.c.function.punctuation.definition.block.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " the rest of", + "t": "meta.c.function.block.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.function-call", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "asm", + "t": "meta.c.function.block.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.block.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "movw $0x38, ", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%a", + "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "x; ltr ", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%a", + "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "x", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.function-call", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "fn", + "t": "meta.c.function.block.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.block.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "{};", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.block.comment.c++", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "//", + "t": "meta.c.function.punctuation.definition.block.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " the rest of", + "t": "meta.c.function.block.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "}", + "t": "meta.c.function.punctuation.section.end.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_cpp.json b/extensions/cpp/test/colorize-results/test_cpp.json new file mode 100644 index 00000000000..8bf9243c15d --- /dev/null +++ b/extensions/cpp/test/colorize-results/test_cpp.json @@ -0,0 +1,1025 @@ +[ + { + "c": "//", + "t": "punctuation.definition.comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " classes example", + "t": "comment.c++.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.preprocessor.c.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "include", + "t": "meta.preprocessor.c.keyword.control.import.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.preprocessor.c.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "<", + "t": "meta.preprocessor.c.punctuation.begin.string.quoted.definition.other.include.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "iostream", + "t": "meta.preprocessor.c.string.quoted.other.include.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": ">", + "t": "meta.preprocessor.c.punctuation.string.quoted.definition.other.end.include.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "using", + "t": "keyword.control.c++", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "namespace", + "t": "meta.storage.type.c++.namespace-block${2:+.std}", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c++.namespace-block${2:+.std}", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "std", + "t": "meta.entity.name.type.c++.namespace-block${2:+.std}", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.keyword.control.c++.namespace-block${2:+.std}.namespace.$2", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "class", + "t": "meta.storage.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Rectangle", + "t": "meta.entity.name.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.punctuation.section.begin.block.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.storage.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " width, height;", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public:", + "t": "meta.storage.c++.class-struct-block.modifier.public", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "void", + "t": "meta.c.storage.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "set_values", + "t": "meta.c.function.entity.name.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.punctuation.parens.section.begin.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.function.parens.storage.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": ",", + "t": "meta.c.function.parens.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.function.parens.storage.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": ")", + "t": "meta.c.function.punctuation.parens.section.end.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.function.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.storage.type.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "area", + "t": "meta.c.function.entity.name.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.punctuation.parens.section.begin.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.c.function.punctuation.parens.section.end.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.c.function.punctuation.section.begin.block.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.c.keyword.control.function.block.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " width*height;", + "t": "meta.c.function.block.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.c.function.punctuation.section.end.block.c++.class-struct-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.punctuation.definition.c++.class-struct-block.invalid", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.invalid", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.invalid", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.invalid", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.invalid", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.invalid" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "void", + "t": "c.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "Rectangle::set_values", + "t": "meta.c.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.punctuation.parens.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.function.parens.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " x, ", + "t": "meta.c.function.parens", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.function.parens.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " y", + "t": "meta.c.function.parens", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.c.function.punctuation.parens.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.c.function.punctuation.section.begin.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " width = x;", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " height = y;", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.c.function.punctuation.section.end.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "c.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.c.function.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark .token.whitespace", + "light_plus": ".vs .token.whitespace", + "dark_vs": ".vs-dark .token.whitespace", + "light_vs": ".vs .token.whitespace", + "hc_black": ".hc-black .token.whitespace" + } + }, + { + "c": "main", + "t": "meta.c.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.punctuation.parens.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.c.function.punctuation.parens.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.c.function.punctuation.section.begin.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " Rectangle rect;", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " rect.", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "set_values", + "t": "meta.c.function.block.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " (", + "t": "meta.c.function.block.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "meta.c.function.constant.numeric.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4", + "t": "meta.c.function.constant.numeric.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ");", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " cout << ", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "area: ", + "t": "meta.c.function.string.quoted.double.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " << rect.", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "area", + "t": "meta.c.function.block.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.c.function.block.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ");", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.c.keyword.control.function.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "meta.c.function.constant.numeric.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.c.function.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.c.function.punctuation.section.end.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file From 084e8dba55842f22b21bb715a30f8f9214213c93 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:56:21 +0200 Subject: [PATCH 028/117] [css/less/sass] colorizer tests --- .../css/test/colorize-fixtures/test.css | 155 + .../css/test/colorize-results/test_css.json | 8714 ++++++++ .../less/test/colorize-fixtures/test.less | 46 + .../less/test/colorize-results/test_less.json | 2499 +++ .../test/colorize-fixtures/test.scss | 336 + .../test/colorize-results/test_scss.json | 17140 ++++++++++++++++ 6 files changed, 28890 insertions(+) create mode 100644 extensions/css/test/colorize-fixtures/test.css create mode 100644 extensions/css/test/colorize-results/test_css.json create mode 100644 extensions/less/test/colorize-fixtures/test.less create mode 100644 extensions/less/test/colorize-results/test_less.json create mode 100644 extensions/vscode-colorize-tests/test/colorize-fixtures/test.scss create mode 100644 extensions/vscode-colorize-tests/test/colorize-results/test_scss.json diff --git a/extensions/css/test/colorize-fixtures/test.css b/extensions/css/test/colorize-fixtures/test.css new file mode 100644 index 00000000000..23f966f0633 --- /dev/null +++ b/extensions/css/test/colorize-fixtures/test.css @@ -0,0 +1,155 @@ +/* css Zen Garden default style v1.02 */ +/* css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/ */ +/* This file based on 'Tranquille' by Dave Shea */ +/* You may use this file as a foundation for any new work, but you may find it easier to start from scratch. */ +/* Not all elements are defined in this file, so you'll most likely want to refer to the xhtml as well. */ +/* Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. */ +/* basic elements */ + +.html { + padding: 0; + font-style: 0; +} +body { + font: 75% georgia, sans-serif; + line-height: 1.88889; + color: #555753; + background: #fff url(blossoms.jpg) no-repeat bottom right; + margin: 0; + padding: 0; + background-image: -webkit-linear-gradient(top, start-color, end-color); + background-image: -webkit-gradient(linear, left top, left bottom, from(start-color), to(end-color)); + background-image: -moz-linear-gradient(top, start-color, end-color); + background-image: linear-gradient(to bottom, start-color, end-color); +} + +p { + margin-top: 0; + text-align: justify; +} + +h3 { + font: italic normal 1.4em georgia, sans-serif; + letter-spacing: 1px; + margin-bottom: 0; + color: #7D775C; +} + +a:link { + font-weight: bold; + text-decoration: none; + color: #B7A5DF; +} + +a:visited { + font-weight: bold; + text-decoration: none; + color: #D4CDDC; + cursor: pointer; +} + +a:hover, +a:focus, +a:active { + text-decoration: underline; + color: #9685BA; +} + +abbr { + border-bottom: none; +} + + +/* specific divs */ + +.page-wrapper { + background: url(zen-bg.jpg) no-repeat top left; + padding: 0 175px 0 110px; + margin: 0; + position: relative; +} + +.intro { + min-width: 470px; + width: 100%; +} + +header h1 { + background: transparent url(h1.gif) no-repeat top left; + margin-top: 10px; + display: block; + width: 219px; + height: 87px; + float: left; + text-indent: 100%; + white-space: nowrap; + overflow: hidden; +} + +header { + padding-top: 20px; + height: 87px; +} + +.summary { + clear: both; + margin: 20px 20px 20px 10px; + width: 160px; + float: left; +} + +.summary p { + font: italic 1.1em/2.2 georgia; + text-align: center; +} + +.preamble { + clear: right; + padding: 0px 10px 0 10px; +} + +.supporting { + padding-left: 10px; + margin-bottom: 40px; +} + +#footer { + text-align: center +} + +footer a:link, +footer a:visited { + margin-right: 20px; +} + +.sidebar { + margin-left: 600px; + position: absolute; + top: 0; + right: 0; +} + +.sidebar .wrapper { + font: 10px verdana, sans-serif; + background: transparent url(paper-bg.jpg) top left repeat-y; + padding: 10px; + margin-top: 150px; + width: 130px; +} + +.sidebar li a:link { + color: #988F5E; +} + +.sidebar li a:visited { + color: '#B3AE94'; +} + +.extra1 { + background: transparent url(cr2.gif) top left no-repeat; + position: absolute; + top: 40px; + right: 0; + width: 148px; + height: 110px; +} \ No newline at end of file diff --git a/extensions/css/test/colorize-results/test_css.json b/extensions/css/test/colorize-results/test_css.json new file mode 100644 index 00000000000..00917f62b77 --- /dev/null +++ b/extensions/css/test/colorize-results/test_css.json @@ -0,0 +1,8714 @@ +[ + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " css Zen Garden default style v1.02 ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/ ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " This file based on 'Tranquille' by Dave Shea ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " You may use this file as a foundation for any new work, but you may find it easier to start from scratch. ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Not all elements are defined in this file, so you'll most likely want to refer to the xhtml as well. ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " basic elements ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "html", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-style", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "body", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "75", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "georgia", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sans-serif", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line-height", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1.88889", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "555753", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "fff", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url", + "t": "css.meta.property-list.support.property-value.function.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "blossoms.jpg", + "t": "css.meta.property-list.property-value.misc.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "no-repeat", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bottom", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "right", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-image", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " -webkit-linear-gradient(", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "start", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-image", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " -webkit-gradient(linear, ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bottom", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", from(", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "start", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "), to(", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-image", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " -moz-linear-gradient(", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "start", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-image", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " linear-gradient(to ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bottom", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "start", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-top", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-align", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "justify", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "h3", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "italic", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "normal", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1.4", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "em", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "georgia", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sans-serif", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "letter-spacing", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-bottom", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "7D775C", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "link", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-weight", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-decoration", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "none", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "B7A5DF", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "visited", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-weight", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-decoration", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "none", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "D4CDDC", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cursor", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "pointer", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "hover", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": ",", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "focus", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": ",", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "active", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-decoration", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "underline", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "9685BA", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "abbr", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-bottom", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "none", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/*", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " specific divs ", + "t": "comment.block.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.block.css.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "page-wrapper", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url", + "t": "css.meta.property-list.support.property-value.function.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "zen-bg.jpg", + "t": "css.meta.property-list.property-value.misc.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "no-repeat", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "175", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "110", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "position", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "relative", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "intro", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "min-width", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "470", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "header", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "h1", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "transparent", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url", + "t": "css.meta.property-list.support.property-value.function.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "h1.gif", + "t": "css.meta.property-list.property-value.misc.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "no-repeat", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-top", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "display", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "block", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "219", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "height", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "87", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "float", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-indent", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "white-space", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nowrap", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "overflow", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "hidden", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "header", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding-top", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "height", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "87", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "summary", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "clear", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "both", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "160", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "float", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "summary", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "p", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "italic", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1.1", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "em", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": "/", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2.2", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "georgia", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-align", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "center", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "preamble", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "clear", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "right", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "supporting", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding-left", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-bottom", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "40", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.id", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "footer", + "t": "css.meta.selector.entity.other.attribute-name.id", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-align", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "center", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "footer", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "link", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": ",", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "footer", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "visited", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-right", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "sidebar", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-left", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "600", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "position", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "absolute", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "right", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "sidebar", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "wrapper", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "verdana", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sans-serif", + "t": "css.meta.property-list.support.property-value.constant.font-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "transparent", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url", + "t": "css.meta.property-list.support.property-value.function.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "paper-bg.jpg", + "t": "css.meta.property-list.property-value.misc.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "repeat-y", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-top", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "150", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "130", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "sidebar", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "li", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "link", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "988F5E", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "sidebar", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "li", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "a", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ":", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "visited", + "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "css.punctuation.definition.meta.property-list.begin.property-value.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "#B3AE94", + "t": "css.meta.property-list.property-value.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "css.punctuation.definition.meta.property-list.property-value.end.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "extra1", + "t": "css.meta.selector.entity.other.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "transparent", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url", + "t": "css.meta.property-list.support.property-value.function.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cr2.gif", + "t": "css.meta.property-list.property-value.misc.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "css.punctuation.meta.property-list.section.property-value.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "no-repeat", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "position", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "absolute", + "t": "css.meta.property-list.support.property-value.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "40", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "right", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "148", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "height", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "110", + "t": "css.meta.property-list.property-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/less/test/colorize-fixtures/test.less b/extensions/less/test/colorize-fixtures/test.less new file mode 100644 index 00000000000..0755588e585 --- /dev/null +++ b/extensions/less/test/colorize-fixtures/test.less @@ -0,0 +1,46 @@ +@base: #f938ab; + +.box-shadow(@style, @c) when (iscolor(@c)) { + border-radius: @style @c; +} + +.box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) { + .box-shadow(@style, rgba(0, 0, 0, @alpha)); +} + +.box { + color: saturate(@base, 5%); + border-color: lighten(@base, 30%); + + div { + .box-shadow((0 0 5px), 30%); + } +} + +#header { + h1 { + font-size: 26px; + font-weight: bold; + } + + p { font-size: 12px; + a { text-decoration: none; + &:hover { border-width: 1px } + } + } +} + +@the-border: 1px; +@base-color: #111; +@red: #842210; + +#header { + color: (@base-color * 3); + border-left: @the-border; + border-right: (@the-border * 2); +} + +#footer { + color: (@base-color + #003300); + border-color: desaturate(@red, 10%); +} diff --git a/extensions/less/test/colorize-results/test_less.json b/extensions/less/test/colorize-results/test_less.json new file mode 100644 index 00000000000..365fa2f205e --- /dev/null +++ b/extensions/less/test/colorize-results/test_less.json @@ -0,0 +1,2499 @@ +[ + { + "c": "@base", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#f938ab", + "t": "other.constant.rgb-value.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".box-shadow", + "t": "other.css.entity.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@style", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@c", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " when ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "iscolor", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@c", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-radius", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@style", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@c", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".box-shadow", + "t": "other.css.entity.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@style", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@alpha", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 50", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " when ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "isnumber", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@alpha", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".box-shadow", + "t": "other.css.entity.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@style", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "rgba", + "t": "css.support.function.any-method.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 0", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 0", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@alpha", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".box", + "t": "other.css.entity.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "saturate", + "t": "less.support.function.any-method.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@base", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 5", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-color", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "lighten", + "t": "less.support.function.any-method.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@base", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 30", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "div", + "t": "keyword.control.html.elements", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".box-shadow", + "t": "other.css.entity.attribute-name.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": "((", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0 0 5", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 30", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#header", + "t": "other.css.entity.attribute-name.meta.selector.id", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "h1", + "t": "keyword.control.html.elements", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-size", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 26", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-weight", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "constant.css.support.property-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p", + "t": "keyword.control.html.elements", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-size", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 12", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a", + "t": "keyword.control.html.elements", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text-decoration", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "none", + "t": "constant.css.support.property-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "&", + "t": "less.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ":hover", + "t": "other.css.entity.attribute-name.pseudo-class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-width", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 1", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@the-border", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 1", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "px", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@base-color", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#111", + "t": "other.constant.rgb-value.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@red", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#842210", + "t": "other.constant.rgb-value.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#header", + "t": "other.css.entity.attribute-name.meta.selector.id", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@base-color", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "less.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " 3", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-left", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@the-border", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-right", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@the-border", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "less.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " 2", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#footer", + "t": "other.css.entity.attribute-name.meta.selector.id", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@base-color", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "less.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#003300", + "t": "other.constant.rgb-value.css", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-color", + "t": "css.support.type.property-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "desaturate", + "t": "less.support.function.any-method.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@red", + "t": "variable.other.less", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " 10", + "t": "constant.css.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "%", + "t": "other.css.keyword.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + } + }, + { + "c": ")", + "t": "less.meta.brace.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "less.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-fixtures/test.scss b/extensions/vscode-colorize-tests/test/colorize-fixtures/test.scss new file mode 100644 index 00000000000..311557a6315 --- /dev/null +++ b/extensions/vscode-colorize-tests/test/colorize-fixtures/test.scss @@ -0,0 +1,336 @@ +// snippets from the Sass documentation at http://sass-lang.com/ + +/* css stuff */ +/* charset */ +@charset "UTF-8"; + +/* nested rules */ +#main { + width: 97%; + p, div { + font-size: 2em; + a { font-weight: bold; } + } + pre { font-size: 3em; } +} + +/* parent selector (&) */ +#main { + color: black; + a { + font-weight: bold; + &:hover { color: red; } + } +} + +/* nested properties */ +.funky { + font: 2px/3px { + family: fantasy; + size: 30em; + weight: bold; + } + color: black; +} + +/* nesting conflicts */ +tr.default { + foo: { // properties + foo : 1; + } + foo: 1px; // rule + foo.bar { // selector + foo : 1; + } + foo:bar { // selector + foo : 1; + } + foo: 1px; // rule +} + +/* extended comment syntax */ +/* This comment is + * several lines long. + * since it uses the CSS comment syntax, + * it will appear in the CSS output. */ +body { color: black; } + +// These comments are only one line long each. +// They won't appear in the CSS output, +// since they use the single-line comment syntax. +a { color: green; } + +/* variables */ +$width: 5em; +$width: "Second width?" !default; +#main { + $localvar: 6em; + width: $width; + + $font-size: 12px; + $line-height: 30px; + font: #{$font-size}/#{$line-height}; +} +$name: foo; +$attr: border; +p.#{$name} { + #{$attr}-color: blue; +} + +/* variable declaration with whitespaces */ +// Set the color of your columns +$grid-background-column-color : rgba(100, 100, 225, 0.25) !default; + +/* operations*/ +p { + width: (1em + 2em) * 3; + color: #010203 + #040506; + font-family: sans- + "serif"; + margin: 3px + 4px auto; + content: "I ate #{5 + 10} pies!"; + color: hsl(0, 100%, 50%); + color: hsl($hue: 0, $saturation: 100%, $lightness: 50%); +} +/* functions*/ +$grid-width: 40px; +$gutter-width: 10px; +@function grid-width($n) { + @return $n * $grid-width + ($n - 1) * $gutter-width; +} +#sidebar { width: grid-width(5); } + +/* @import */ +@import "foo.scss"; +$family: unquote("Droid+Sans"); +@import "rounded-corners", url("http://fonts.googleapis.com/css?family=#{$family}"); +#main { + @import "example"; +} + +/* @media */ +.sidebar { + width: 300px; + @media screen and (orientation: landscape) { + width: 500px; + } +} + +/* @extend */ +.error { + border: 1px #f00; + background-color: #fdd; +} +.seriousError { + @extend .error; + border-width: 3px; +} +#context a%extreme { + color: blue; + font-weight: bold; + font-size: 2em; +} +.notice { + @extend %extreme !optional; +} + +/* @debug and @warn */ +@debug 10em + 12em; +@mixin adjust-location($x, $y) { + @if unitless($x) { + @warn "Assuming #{$x} to be in pixels"; + $x: 1px * $x; + } + @if unitless($y) { + @warn "Assuming #{$y} to be in pixels"; + $y: 1px * $y; + } + position: relative; left: $x; top: $y; +} + +/* control directives */ + +/* if statement */ +p { + @if 1 + 1 == 2 { border: 1px solid; } + @if 5 < 3 { border: 2px dotted; } + @if null { border: 3px double; } +} + +/* if else statement */ +$type: monster; +p { + @if $type == ocean { + color: blue; + } @else { + color: black; + } +} + +/* for statement */ +@for $i from 1 through 3 { + .item-#{$i} { width: 2em * $i; } +} + +/* each statement */ +@each $animal in puma, sea-slug, egret, salamander { + .#{$animal}-icon { + background-image: url('/images/#{$animal}.png'); + } +} + +/* while statement */ +$i: 6; +@while $i > 0 { + .item-#{$i} { width: 2em * $i; } + $i: $i - 2; +} + +/* function with controlstatements */ +@function foo($total, $a) { + @for $i from 0 to $total { + @if (unit($a) == "%") and ($i == ($total - 1)) { + $z: 100%; + @return '1'; + } + } + @return $grid; +} + +/* @mixin simple*/ +@mixin large-text { + font: { + family: Arial; + size: 20px; + weight: bold; + } + color: #ff0000; +} +.page-title { + @include large-text; + padding: 4px; +} + +/* mixin with parameters */ +@mixin sexy-border($color, $width: 1in) { + border: { + color: $color; + width: $width; + style: dashed; + } +} +p { @include sexy-border(blue); } + +/* mixin with varargs */ +@mixin box-shadow($shadows...) { + -moz-box-shadow: $shadows; + -webkit-box-shadow: $shadows; + box-shadow: $shadows; +} +.shadows { + @include box-shadow(0px 4px 5px #666, 2px 6px 10px #999); +} + +/* include with varargs */ +@mixin colors($text, $background, $border) { + color: $text; + background-color: $background; + border-color: $border; +} +$values: #ff0000, #00ff00, #0000ff; +.primary { + @include colors($values...); +} + +/* include with body */ +@mixin apply-to-ie6-only { + * html { + @content; + } +} +@include apply-to-ie6-only { + #logo { + background-image: url(/logo.gif); + } +} + + + +/* attributes */ +[rel="external"]::after { + content: 's'; +} +/*page */ +@page :left { + margin-left: 4cm; + margin-right: 3cm; +} + +/* missing semicolons */ +tr.default { + foo.bar { + $foo: 1px + } + foo: { + foo : white + } + foo.bar1 { + @extend tr.default + } + foo.bar2 { + @import "compass" + } + bar: black +} + +/* rules without whitespace */ +legend {foo{a:s}margin-top:0;margin-bottom:#123;margin-top:s(1)} + +/* extend with interpolation variable */ +@mixin error($a: false) { + @extend .#{$a}; + @extend ##{$a}; +} +#bar {a: 1px;} +.bar {b: 1px;} +foo { + @include error('bar'); +} + +/* css3: @font face */ +@font-face { font-family: Delicious; src: url('Delicious-Roman.otf'); } + +/* rule names with variables */ +.orbit-#{$d}-prev { + #{$d}-style: 0; + foo-#{$d}: 1; + #{$d}-bar-#{$d}: 2; + foo-#{$d}-bar: 1; +} + +/* keyframes */ +@-webkit-keyframes NAME-YOUR-ANIMATION { + 0% { opacity: 0; } + 100% { opacity: 1; } +} +@-moz-keyframes NAME-YOUR-ANIMATION { + 0% { opacity: 0; } + 100% { opacity: 1; } +} +@-o-keyframes NAME-YOUR-ANIMATION { + 0% { opacity: 0; } + 100% { opacity: 1; } +} +@keyframes NAME-YOUR-ANIMATION { + 0% { opacity: 0; } + 100% { opacity: 1; } +} + +/* string escaping */ +[data-icon='test-1']:before { + content:'\\'; +} +/* a comment */ +$var1: '\''; +$var2: "\""; +/* another comment */ + diff --git a/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json b/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json new file mode 100644 index 00000000000..3a632475db2 --- /dev/null +++ b/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json @@ -0,0 +1,17140 @@ +[ + { + "c": "// snippets from the Sass documentation at http://sass-lang.com/", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/* css stuff */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/* charset */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@charset", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "UTF-8", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* nested rules */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#main", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "97%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "div", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-size:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-weight:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "pre", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-size:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* parent selector (&) */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#main", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "black", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-weight:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "&", + "t": "entity.name.tag.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":hover", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "red", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* nested properties */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ".funky", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "/", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "3px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "family:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fantasy", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "size:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "30em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "weight:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "black", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* nesting conflicts */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "tr.default", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// properties", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo :", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// rule", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo.bar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// selector", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo :", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo:bar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// selector", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo :", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// rule", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* extended comment syntax */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/* This comment is", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * several lines long.", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * since it uses the CSS comment syntax,", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * it will appear in the CSS output. */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "body", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "black", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// These comments are only one line long each.", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "// They won't appear in the CSS output,", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "// since they use the single-line comment syntax.", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "a", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "green", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* variables */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "$width:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "5em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$width:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Second width?", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "!default", + "t": "literal.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#main", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$localvar:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "6em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$width", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$font-size:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "12px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$line-height:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "30px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$font-size", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$line-height", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$name:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$attr:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p.", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$name", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$attr", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "blue", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* variable declaration with whitespaces */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "// Set the color of your columns", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "$grid-background-column-color :", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "rgba(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "225", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0.25", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "!default", + "t": "literal.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* operations*/", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "p", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#010203", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#040506", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-family:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sans-", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "serif", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "auto", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "content:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "I ate #{5 + 10} pies!", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "hsl(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "50%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "hsl(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$hue:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$saturation:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$lightness:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "50%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* functions*/", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "$grid-width:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "40px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$gutter-width:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@function", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "grid-width(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$n", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@return", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$n", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$grid-width", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$n", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$gutter-width", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#sidebar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "grid-width(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "5", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* @import */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@import", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "foo.scss", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$family:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "unquote(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Droid+Sans", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@import", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "rounded-corners", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "http://fonts.googleapis.com/css?family=#{$family}", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#main", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@import", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "example", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* @media */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ".sidebar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "300px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@media", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "screen", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "and", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "orientation", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "landscape", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "500px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* @extend */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ".error", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#f00", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#fdd", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".seriousError", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@extend", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".error", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#context", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a%extreme", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "blue", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-weight:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-size:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".notice", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@extend", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "%extreme", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "!optional", + "t": "literal.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* @debug and @warn */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@debug", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "12em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "adjust-location(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$x", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$y", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "unitless(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$x", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@warn", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Assuming #{$x} to be in pixels", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$x:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$x", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "unitless(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$y", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@warn", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Assuming #{$y} to be in pixels", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$y:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$y", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "position:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "relative", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "left:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$x", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "top:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$y", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* control directives */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "/* if statement */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "p", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "solid", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "5", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "dotted", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "null", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "double", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* if else statement */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "$type:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "monster", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$type", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ocean", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "blue", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@else", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "black", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* for statement */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@for", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "from", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "through", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".item-", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* each statement */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@each", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$animal", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "puma", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sea-slug", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "egret", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "salamander", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$animal", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-icon", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-image:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "/images/#{$animal}.png", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* while statement */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "$i:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "6", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@while", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".item-", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2em", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* function with controlstatements */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@function", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$total", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$a", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@for", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "from", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "to", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$total", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@if", + "t": "keyword.flow.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "unit(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$a", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "and", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$i", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$total", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "))", + "t": "punctuation.parenthesis.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$z:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@return", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "1", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@return", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$grid", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* @mixin simple*/", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "large-text", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "family:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Arial", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "size:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "20px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "weight:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bold", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#ff0000", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".page-title", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@include", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "large-text", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "padding:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* mixin with parameters */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sexy-border(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$color", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1in", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$color", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "width:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$width", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "style:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "dashed", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@include", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sexy-border(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "blue", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* mixin with varargs */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "box-shadow(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$shadows", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "...", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-moz-box-shadow:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$shadows", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-webkit-box-shadow:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$shadows", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "box-shadow:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$shadows", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".shadows", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@include", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "box-shadow(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "5px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#666", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "6px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#999", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* include with varargs */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "colors(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$text", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$background", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$border", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$text", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$background", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "border-color:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$border", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$values:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#ff0000", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ",", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#00ff00", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ",", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#0000ff", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".primary", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@include", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "colors(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$values", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "...", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* include with body */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "apply-to-ie6-only", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "entity.name.tag.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "html", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@content", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@include", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "apply-to-ie6-only", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#logo", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-image:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/logo.gif", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* attributes */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "[", + "t": "punctuation.bracket.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "rel", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "external", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "punctuation.bracket.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::after", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "content:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "s", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/*page */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@page", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":left", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-left:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4cm", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-right:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3cm", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* missing semicolons */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "tr.default", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo.bar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$foo:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo :", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "white", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo.bar1", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@extend", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "tr.default", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo.bar2", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@import", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "compass", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "bar:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "black", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* rules without whitespace */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "legend", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "s", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-top:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-bottom:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "#123", + "t": "constant.rgb-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "margin-top:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "s(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* extend with interpolation variable */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@mixin", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "error(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$a:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "false", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@extend", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$a", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@extend", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$a", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#bar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "a:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".bar", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "b:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1px", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@include", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "error(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "bar", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* css3: @font face */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@font-face", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "font-family:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Delicious", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "src:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "url(", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Delicious-Roman.otf", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* rule names with variables */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": ".orbit-", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$d", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-prev", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$d", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-style:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo-", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$d", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " 1;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$d", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-bar-", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$d", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " 2;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foo-", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": "#{", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$d", + "t": "variable.ref.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.interpolation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-bar:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* keyframes */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@-webkit-keyframes", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NAME-YOUR-ANIMATION", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@-moz-keyframes", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NAME-YOUR-ANIMATION", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@-o-keyframes", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NAME-YOUR-ANIMATION", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@keyframes", + "t": "keyword.control.at-rule.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NAME-YOUR-ANIMATION", + "t": "support.function.name.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "100%", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "opacity:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "constant.numeric.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* string escaping */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "[", + "t": "punctuation.bracket.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "data-icon", + "t": "support.property-value.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.operator.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "test-1", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "punctuation.bracket.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":before", + "t": "entity.name.selector.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "content:", + "t": "support.type.property-name.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\\\", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.curly.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* a comment */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "$var1:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\'", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$var2:", + "t": "variable.decl.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\\"", + "t": "string.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "string.punctuation.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.sass", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/* another comment */", + "t": "comment.sass", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + } +] \ No newline at end of file From d4182e34b89d58aec50517ea816c16597a7e0364 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:57:13 +0200 Subject: [PATCH 029/117] colorizer test code polish --- .../src/colorizer.test.ts | 22 ++++++++++--------- .../themes.test.contribution.ts | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/extensions/vscode-colorize-tests/src/colorizer.test.ts b/extensions/vscode-colorize-tests/src/colorizer.test.ts index 801642a33a3..d337bcdde9a 100644 --- a/extensions/vscode-colorize-tests/src/colorizer.test.ts +++ b/extensions/vscode-colorize-tests/src/colorizer.test.ts @@ -16,14 +16,18 @@ function assertUnchangedTokens(testFixurePath:string, done) { return commands.executeCommand('_workbench.captureSyntaxTokens', Uri.file(testFixurePath)).then(data => { try { let resultsFolderPath = join(dirname(dirname(testFixurePath)), 'colorize-results'); + if (!fs.existsSync(resultsFolderPath)) { + fs.mkdirSync(resultsFolderPath); + } let resultPath = join(resultsFolderPath, fileName.replace('.', '_') + '.json'); if (fs.existsSync(resultPath)) { - let previosData = JSON.parse(fs.readFileSync(resultPath).toString()); + let previousData = JSON.parse(fs.readFileSync(resultPath).toString()); try { - assert.deepEqual(data, previosData); + assert.deepEqual(data, previousData); } catch (e) { - let errorResultPath = join(resultsFolderPath, fileName.replace('.', '_') + '.error.json'); - fs.writeFileSync(errorResultPath, JSON.stringify(data, null, '\t')); + fs.writeFileSync(resultPath, JSON.stringify(data, null, '\t'), { mode: 'w' }); + let errorResultPath = join(resultsFolderPath, fileName.replace('.', '_') + '.previous.json'); + fs.writeFileSync(errorResultPath, JSON.stringify(previousData, null, '\t'), { mode: 'w' }); throw e; } } else { @@ -38,17 +42,15 @@ function assertUnchangedTokens(testFixurePath:string, done) { suite("colorization", () => { let extensionsFolder = normalize(join(__dirname, '../../')); - console.log(extensionsFolder); let extensions = fs.readdirSync(extensionsFolder); extensions.forEach(extension => { - let extensionColorizeFixurePath = join(extensionsFolder, extension, 'test', 'colorize-fixtures'); - if (fs.existsSync(extensionColorizeFixurePath)) { - console.log(extensionColorizeFixurePath); - let fixturesFiles = fs.readdirSync(extensionColorizeFixurePath); + let extensionColorizeFixturePath = join(extensionsFolder, extension, 'test', 'colorize-fixtures'); + if (fs.existsSync(extensionColorizeFixturePath)) { + let fixturesFiles = fs.readdirSync(extensionColorizeFixturePath); fixturesFiles.forEach(fixturesFile => { // define a test for each fixture test(extension + '-' + fixturesFile, function(done) { - assertUnchangedTokens(join(extensionColorizeFixurePath, fixturesFile), done); + assertUnchangedTokens(join(extensionColorizeFixturePath, fixturesFile), done); }); }); } diff --git a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts index 892b0ded0b8..a5acde557e1 100644 --- a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts +++ b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts @@ -176,6 +176,6 @@ KeybindingsRegistry.registerCommandDesc({ }, context: undefined, - primary: KeyMod.Shift | KeyCode.F11 + primary: undefined }); From 1416f6e5ce13b6f43b102db449d4c6eceb422f76 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:57:42 +0200 Subject: [PATCH 030/117] [git] colorizer tests --- .../git/test/colorize-fixtures/COMMIT_EDITMSG | 13 + .../test/colorize-fixtures/git-rebase-todo | 15 + .../test/colorize-results/COMMIT_EDITMSG.json | 255 +++++++++ .../colorize-results/git-rebase-todo.json | 541 ++++++++++++++++++ 4 files changed, 824 insertions(+) create mode 100644 extensions/git/test/colorize-fixtures/COMMIT_EDITMSG create mode 100644 extensions/git/test/colorize-fixtures/git-rebase-todo create mode 100644 extensions/git/test/colorize-results/COMMIT_EDITMSG.json create mode 100644 extensions/git/test/colorize-results/git-rebase-todo.json diff --git a/extensions/git/test/colorize-fixtures/COMMIT_EDITMSG b/extensions/git/test/colorize-fixtures/COMMIT_EDITMSG new file mode 100644 index 00000000000..e81d55d0edd --- /dev/null +++ b/extensions/git/test/colorize-fixtures/COMMIT_EDITMSG @@ -0,0 +1,13 @@ +This is the summary line. It can't be too long. +After I can write a much more detailed description without quite the same restrictions on length. + +# Please enter the commit message for your changes. Lines starting +# with '#' will be ignored, and an empty message aborts the commit. +# On branch master +# Your branch is up-to-date with 'origin/master'. +# +# Changes to be committed: +# deleted: README.md +# modified: index.less +# new file: spec/COMMIT_EDITMSG +# \ No newline at end of file diff --git a/extensions/git/test/colorize-fixtures/git-rebase-todo b/extensions/git/test/colorize-fixtures/git-rebase-todo new file mode 100644 index 00000000000..3b6df1cd4f7 --- /dev/null +++ b/extensions/git/test/colorize-fixtures/git-rebase-todo @@ -0,0 +1,15 @@ +pick 1fc6c95 Patch A +squash fa39187 Something to add to patch A +pick 7b36971 Something to move before patch B +pick 6b2481b Patch B +fixup c619268 A fix for Patch B +edit dd1475d Something I want to split +reword 4ca2acc i cant' typ goods + +# Commands: +# p, pick = use commit +# r, reword = use commit, but edit the commit message +# e, edit = use commit, but stop for amending +# s, squash = use commit, but meld into previous commit +# f, fixup = like "squash", but discard this commit's log message +# x, exec = run command (the rest of the line) using shell \ No newline at end of file diff --git a/extensions/git/test/colorize-results/COMMIT_EDITMSG.json b/extensions/git/test/colorize-results/COMMIT_EDITMSG.json new file mode 100644 index 00000000000..5be091450f2 --- /dev/null +++ b/extensions/git/test/colorize-results/COMMIT_EDITMSG.json @@ -0,0 +1,255 @@ +[ + { + "c": "This is the summary line. It can't be too long.", + "t": "meta.scope.message.git-commit.subject", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "After I can write a much more detailed description without quite the same restrictions on length.", + "t": "meta.scope.message.git-commit", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Please enter the commit message for your changes. Lines starting", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " with '#' will be ignored, and an empty message aborts the commit.", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " On branch master", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Your branch is up-to-date with 'origin/master'.", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Changes to be committed:", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "deleted: README.md", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.markup.deleted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "modified: index.less", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.markup.changed", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.changed", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.changed", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.changed", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.changed", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.changed" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "new file: spec/COMMIT_EDITMSG", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "#", + "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + } +] \ No newline at end of file diff --git a/extensions/git/test/colorize-results/git-rebase-todo.json b/extensions/git/test/colorize-results/git-rebase-todo.json new file mode 100644 index 00000000000..be1dcdcab1e --- /dev/null +++ b/extensions/git/test/colorize-results/git-rebase-todo.json @@ -0,0 +1,541 @@ +[ + { + "c": "pick", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1fc6c95", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Patch A", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "squash", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fa39187", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Something to add to patch A", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "pick", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "7b36971", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Something to move before patch B", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "pick", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "6b2481b", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Patch B", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fixup", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "c619268", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "A fix for Patch B", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "edit", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "dd1475d", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Something I want to split", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "reword", + "t": "meta.commit-command.git-rebase.support.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "4ca2acc", + "t": "meta.commit-command.git-rebase.constant.sha", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + } + }, + { + "c": " ", + "t": "meta.commit-command.git-rebase", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "i cant' typ goods", + "t": "meta.commit-command.git-rebase.commit-message", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Commands:", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " p, pick = use commit", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " r, reword = use commit, but edit the commit message", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " e, edit = use commit, but stop for amending", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " s, squash = use commit, but meld into previous commit", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " f, fixup = like \"squash\", but discard this commit's log message", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " x, exec = run command (the rest of the line) using shell", + "t": "git-rebase.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + } +] \ No newline at end of file From 04f70fd7974c02e450a87322326fda28da613f4d Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:58:24 +0200 Subject: [PATCH 031/117] [diff] colorizer tests --- .../diff/test/colorize-fixtures/test.diff | 19 + .../diff/test/colorize-results/test_diff.json | 398 ++++++++++++++++++ 2 files changed, 417 insertions(+) create mode 100644 extensions/diff/test/colorize-fixtures/test.diff create mode 100644 extensions/diff/test/colorize-results/test_diff.json diff --git a/extensions/diff/test/colorize-fixtures/test.diff b/extensions/diff/test/colorize-fixtures/test.diff new file mode 100644 index 00000000000..f8805a8987e --- /dev/null +++ b/extensions/diff/test/colorize-fixtures/test.diff @@ -0,0 +1,19 @@ +--- lao Sat Jan 26 23:30:39 1991 ++++ tzu Sat Jan 26 23:30:50 1991 +@@ -1,7 +1,6 @@ +-The Way that can be told of is not the eternal Way; +-The name that can be named is not the eternal name. + The Nameless is the origin of Heaven and Earth; +-The Named is the mother of all things. ++The named is the mother of all things. ++ + Therefore let there always be non-being, + so we may see their subtlety, + And let there always be being, +@@ -9,3 +8,6 @@ + The two are the same, + But after they are produced, + they have different names. ++They both may be called deep and profound. ++Deeper and more profound, ++The door of all subtleties! \ No newline at end of file diff --git a/extensions/diff/test/colorize-results/test_diff.json b/extensions/diff/test/colorize-results/test_diff.json new file mode 100644 index 00000000000..21c44680237 --- /dev/null +++ b/extensions/diff/test/colorize-results/test_diff.json @@ -0,0 +1,398 @@ +[ + { + "c": "---", + "t": "meta.diff.header.from-file.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + } + }, + { + "c": " lao\tSat Jan 26 23:30:39 1991", + "t": "meta.diff.header.from-file", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + } + }, + { + "c": "+++", + "t": "meta.diff.header.punctuation.definition.to-file", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + } + }, + { + "c": " tzu\tSat Jan 26 23:30:50 1991", + "t": "meta.diff.header.to-file", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + } + }, + { + "c": "@@", + "t": "meta.diff.punctuation.definition.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.diff.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-1,7 +1,6", + "t": "meta.diff.range.unified.toc-list.line-number", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.diff.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@@", + "t": "meta.diff.punctuation.definition.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "diff.punctuation.definition.markup.deleted.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": "The Way that can be told of is not the eternal Way;", + "t": "diff.markup.deleted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": "-", + "t": "diff.punctuation.definition.markup.deleted.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": "The name that can be named is not the eternal name.", + "t": "diff.markup.deleted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": " The Nameless is the origin of Heaven and Earth;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "diff.punctuation.definition.markup.deleted.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": "The Named is the mother of all things.", + "t": "diff.markup.deleted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + } + }, + { + "c": "+", + "t": "diff.punctuation.definition.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "The named is the mother of all things.", + "t": "diff.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "+", + "t": "diff.punctuation.definition.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": " Therefore let there always be non-being,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " so we may see their subtlety,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " And let there always be being,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@@", + "t": "meta.diff.punctuation.definition.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.diff.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-9,3 +8,6", + "t": "meta.diff.range.unified.toc-list.line-number", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.diff.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@@", + "t": "meta.diff.punctuation.definition.range.unified", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " The two are the same,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " But after they are produced,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " they have different names.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "diff.punctuation.definition.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "They both may be called deep and profound.", + "t": "diff.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "+", + "t": "diff.punctuation.definition.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "Deeper and more profound,", + "t": "diff.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "+", + "t": "diff.punctuation.definition.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + }, + { + "c": "The door of all subtleties!", + "t": "diff.markup.inserted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + } + } +] \ No newline at end of file From f324e87fc7cfe5ee4efd6812cd0b7261bbef5c9e Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 15:58:46 +0200 Subject: [PATCH 032/117] [docker] colorizer tests --- .../docker/test/colorize-fixtures/Dockerfile | 14 + .../test/colorize-results/Dockerfile.json | 310 ++++++++++++++++++ 2 files changed, 324 insertions(+) create mode 100644 extensions/docker/test/colorize-fixtures/Dockerfile create mode 100644 extensions/docker/test/colorize-results/Dockerfile.json diff --git a/extensions/docker/test/colorize-fixtures/Dockerfile b/extensions/docker/test/colorize-fixtures/Dockerfile new file mode 100644 index 00000000000..e12fffa3e4a --- /dev/null +++ b/extensions/docker/test/colorize-fixtures/Dockerfile @@ -0,0 +1,14 @@ +FROM ubuntu +MAINTAINER Kimbro Staken + +RUN apt-get install -y software-properties-common python +RUN add-apt-repository ppa:chris-lea/node.js +RUN echo "deb http://us.archive.ubuntu.com/ubuntu/ precise universe" >> /etc/apt/sources.list +RUN apt-get update +RUN apt-get install -y nodejs +#RUN apt-get install -y nodejs=0.6.12~dfsg1-1ubuntu1 +RUN mkdir /var/www + +ADD app.js /var/www/app.js + +CMD ["/usr/bin/node", "/var/www/app.js"] \ No newline at end of file diff --git a/extensions/docker/test/colorize-results/Dockerfile.json b/extensions/docker/test/colorize-results/Dockerfile.json new file mode 100644 index 00000000000..7cc7cd2e6c6 --- /dev/null +++ b/extensions/docker/test/colorize-results/Dockerfile.json @@ -0,0 +1,310 @@ +[ + { + "c": "FROM", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ubuntu", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "MAINTAINER", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " Kimbro Staken", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RUN", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " apt-get install -y software-properties-common python", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RUN", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " add-apt-repository ppa:chris-lea/node.js", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RUN", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " echo ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"deb http://us.archive.ubuntu.com/ubuntu/ precise universe\"", + "t": "dockerfile.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " >> /etc/apt/sources.list", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RUN", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " apt-get update", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RUN", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " apt-get install -y nodejs", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "dockerfile.comment.line.number-sign.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "RUN apt-get install -y nodejs=0.6.12~dfsg1-1ubuntu1", + "t": "dockerfile.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "RUN", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " mkdir /var/www", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ADD", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " app.js /var/www/app.js", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "CMD", + "t": "keyword.other.special-method.dockerfile", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " [", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"/usr/bin/node\"", + "t": "dockerfile.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"/var/www/app.js\"", + "t": "dockerfile.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "] ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file From e475fdebccc39f0e99d25b8128ab2c49836671f5 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 16:00:01 +0200 Subject: [PATCH 033/117] [html/razor/handlebars/xml] colorizer tests --- .../html/test/colorize-fixtures/test.html | 42 + .../html/test/colorize-results/test_html.json | 2598 ++++++++++++++ .../jade/test/colorize-fixtures/test.jade | 27 + .../jade/test/colorize-results/test_jade.json | 1597 +++++++++ .../test/colorize-fixtures/test.cshtml | 46 + .../test/colorize-fixtures/test.handlebars | 30 + .../test/colorize-results/test_cshtml.json | 3115 +++++++++++++++++ .../colorize-results/test_handlebars.json | 2015 +++++++++++ 8 files changed, 9470 insertions(+) create mode 100644 extensions/html/test/colorize-fixtures/test.html create mode 100644 extensions/html/test/colorize-results/test_html.json create mode 100644 extensions/jade/test/colorize-fixtures/test.jade create mode 100644 extensions/jade/test/colorize-results/test_jade.json create mode 100644 extensions/vscode-colorize-tests/test/colorize-fixtures/test.cshtml create mode 100644 extensions/vscode-colorize-tests/test/colorize-fixtures/test.handlebars create mode 100644 extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json create mode 100644 extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json diff --git a/extensions/html/test/colorize-fixtures/test.html b/extensions/html/test/colorize-fixtures/test.html new file mode 100644 index 00000000000..295e0ce7df1 --- /dev/null +++ b/extensions/html/test/colorize-fixtures/test.html @@ -0,0 +1,42 @@ + + + + VSCode Tests + + + + + +
+ + + + + + + + + \ No newline at end of file diff --git a/extensions/html/test/colorize-results/test_html.json b/extensions/html/test/colorize-results/test_html.json new file mode 100644 index 00000000000..1b0382e4e98 --- /dev/null +++ b/extensions/html/test/colorize-results/test_html.json @@ -0,0 +1,2598 @@ +[ + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "html", + "t": "entity.name.tag.tag-html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "head", + "t": "entity.name.tag.tag-head", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "meta", + "t": "entity.name.tag.tag-meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "charset", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"utf-8\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "title", + "t": "entity.name.tag.tag-title", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "VSCode Tests", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "link", + "t": "entity.name.tag.tag-link", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "href", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "rel", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"stylesheet\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/>", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "style", + "t": "entity.name.tag.tag-style", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "type", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text/css\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\t", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "body", + "t": "css.meta.selector.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + } + }, + { + "c": " ", + "t": "css.meta.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": "{", + "t": "css.punctuation.meta.property-list.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "purple", + "t": "css.meta.property-list.support.property-value.constant.color.w3c-standard-color-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "background-color", + "t": "css.meta.property-list.property-name.support.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + } + }, + { + "c": ":", + "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "css.meta.property-list.property-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": "d8da3d", + "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + } + }, + { + "c": ";", + "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "css.meta.property-list", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "css.punctuation.meta.property-list.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "body", + "t": "entity.name.tag.tag-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "entity.name.tag.tag-div", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"mocha\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "comment.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "script", + "t": "entity.name.tag.tag-script", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "src", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"/out/vs/loader.js\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "script", + "t": "entity.name.tag.tag-script", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "src", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "script", + "t": "entity.name.tag.tag-script", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\tmocha.setup", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'tdd'", + "t": "js.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\trequire.config", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "meta.js.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "baseUrl: ", + "t": "meta.js.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'/out'", + "t": "meta.js.string.single.block.object.member", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",", + "t": "meta.js.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "meta.js.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "paths: ", + "t": "meta.js.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\tassert: ", + "t": "meta.js.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'/test/assert.js'", + "t": "meta.js.string.single.block.object.member", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\t\t\t", + "t": "meta.js.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.js.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\trequire", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "meta.brace.js.block.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " modules ", + "t": "meta.js.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "meta.brace.js.block.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.js.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "meta.brace.js.function.type.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\tmocha.run", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "entity.name.tag.tag-div", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "span", + "t": "entity.name.tag.tag-span", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "octicon", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "span", + "t": "entity.name.tag.tag-span", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"signed-in-tab-flash\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "You signed in with another tab or window. ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "a", + "t": "entity.name.tag.tag-a", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "href", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Reload", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " to refresh your session.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "span", + "t": "entity.name.tag.tag-span", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"signed-out-tab-flash\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "You signed out in another tab or window. ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "a", + "t": "entity.name.tag.tag-a", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "href", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Reload", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " to refresh your session.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + } +] \ No newline at end of file diff --git a/extensions/jade/test/colorize-fixtures/test.jade b/extensions/jade/test/colorize-fixtures/test.jade new file mode 100644 index 00000000000..b1d4c72d23f --- /dev/null +++ b/extensions/jade/test/colorize-fixtures/test.jade @@ -0,0 +1,27 @@ +// h1(name=maintainer.name) +// | Maintainer: +// = ' ' + maintainer.name +table + tr + td(style='width: '+(100/2)+'%'). + Twitter + td= maintainer.twitter + tr + td(style='width: '+(100/2)+'%'). + Blog + td= maintainer.blog + +- var user = { name: 'John' } +if user + div.welcomebox + // Filtered inline output + p. + Welcome, #{user.name} +else + div.loginbox + form(name="login", action="/login", method="post") + input(type="text", name="user") + input(type="password", name="pass") + input(type="submit", value="login") + +p #[code samp] — Regular text. #[samp This is sample text] more text. \ No newline at end of file diff --git a/extensions/jade/test/colorize-results/test_jade.json b/extensions/jade/test/colorize-results/test_jade.json new file mode 100644 index 00000000000..542d6484933 --- /dev/null +++ b/extensions/jade/test/colorize-results/test_jade.json @@ -0,0 +1,1597 @@ +[ + { + "c": "// h1(name=maintainer.name)", + "t": "string.comment.buffered.block.jade", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "// | Maintainer:", + "t": "string.comment.buffered.block.jade", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "// = ' ' + maintainer.name", + "t": "string.comment.buffered.block.jade", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "table", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "tr", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "td", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "style", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "'width: '", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "+", + "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "(", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "100", + "t": "meta.tag.other.constant.attribute_value.js.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "/", + "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "2", + "t": "meta.tag.other.constant.attribute_value.js.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ")", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "+", + "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "'%'", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ")", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ".", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Twitter", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "td", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "=", + "t": "constant.js.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " maintainer.twitter", + "t": "js.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "tr", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "td", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "style", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "'width: '", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "+", + "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "(", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "100", + "t": "meta.tag.other.constant.attribute_value.js.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "/", + "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "2", + "t": "meta.tag.other.constant.attribute_value.js.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ")", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "+", + "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "'%'", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ")", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ".", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Blog", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "td", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "=", + "t": "constant.js.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " maintainer.blog", + "t": "js.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "js.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.source.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.source.var.expr.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.source.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "user", + "t": "meta.js.source.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "meta.js.source.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.meta.js.source.var.expr.var-single-variable.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.meta.js.source.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "name: ", + "t": "block.meta.js.source.var.expr.var-single-variable.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'John'", + "t": "string.block.meta.js.source.var.expr.var-single-variable.object.member.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "block.meta.js.source.var.expr.var-single-variable.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.meta.js.source.var.expr.var-single-variable.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "jade.meta.storage.type.control.flow.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " user", + "t": "jade.meta.control.flow", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "div", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ".welcomebox", + "t": "constant.js.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " // Filtered inline output", + "t": "string.comment.buffered.block.jade", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "p", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ".", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " Welcome, ", + "t": "block.jade.text", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#{user.name}", + "t": "string.block.jade.text.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "else", + "t": "jade.meta.storage.type.control.flow.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " div.loginbox", + "t": "jade.meta.control.flow", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "form", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "name", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"login\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ", ", + "t": "meta.tag.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "action", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"/login\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ", ", + "t": "meta.tag.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "method", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"post\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ")", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "input", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "type", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ", ", + "t": "meta.tag.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "name", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"user\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ")", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "input", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "type", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"password\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ", ", + "t": "meta.tag.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "name", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"pass\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ")", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "input", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "type", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"submit\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ", ", + "t": "meta.tag.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "value", + "t": "jade.meta.tag.other.entity.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.other.attribute_value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"login\"", + "t": "string.jade.meta.tag.other.attribute_value.quoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ")", + "t": "jade.meta.tag.name.other.constant.attribute", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "jade.meta.tag.other entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#[", + "t": "jade.name.entity.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "code", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "jade.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "samp", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "]", + "t": "jade.name.entity.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " — Regular text. ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#[", + "t": "jade.name.entity.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "samp", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "jade.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "This", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "jade.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "is", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "jade.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sample", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "jade.inline", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "text", + "t": "jade.meta.tag.other entity.name.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "]", + "t": "jade.name.entity.function.inline", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " more text.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-fixtures/test.cshtml b/extensions/vscode-colorize-tests/test/colorize-fixtures/test.cshtml new file mode 100644 index 00000000000..d02cdf449e4 --- /dev/null +++ b/extensions/vscode-colorize-tests/test/colorize-fixtures/test.cshtml @@ -0,0 +1,46 @@ +@{ + var total = 0; + var totalMessage = ""; + @* a multiline + razor comment embedded in csharp *@ + if (IsPost) { + + // Retrieve the numbers that the user entered. + var num1 = Request["text1"]; + var num2 = Request["text2"]; + + // Convert the entered strings into integers numbers and add. + total = num1.AsInt() + num2.AsInt(); + totalMessage = "Total = " + total; + } +} + + + + + Add Numbers + + + +

Enter two whole numbers and then click Add.

+
+

+ +

+

+ +

+

+
+ + @* now we call the totalMessage method + (a multi line razor comment outside code) *@ + +

@totalMessage

+ +

@(totalMessage+"!")

+ + An email address (with escaped at character): name@@domain.com + + + \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-fixtures/test.handlebars b/extensions/vscode-colorize-tests/test/colorize-fixtures/test.handlebars new file mode 100644 index 00000000000..5558731ece2 --- /dev/null +++ b/extensions/vscode-colorize-tests/test/colorize-fixtures/test.handlebars @@ -0,0 +1,30 @@ +
+

{{title}}

+ {{#if author}} +

{{author.firstName}} {{author.lastName}}

+ {{else}} +

Unknown Author

+ {{/if}} + {{contentBody}} +
+ +{{#unless license}} +

WARNING: This entry does not have a license!

+{{/unless}} + +
+
    + {{#each footnotes}} +
  • {{this}}
  • + {{/each}} +
+
+ +

Comments

+ +
+ {{#each comments}} +

{{title}}

+
{{body}}
+ {{/each}} +
\ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json b/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json new file mode 100644 index 00000000000..a41190476d6 --- /dev/null +++ b/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json @@ -0,0 +1,3115 @@ +[ + { + "c": "@{", + "t": "support.function.cshtml", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "keyword.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "total", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "number.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "keyword.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "totalMessage", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"\"", + "t": "string.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@* a multiline", + "t": "comment.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " razor comment embedded in csharp *@", + "t": "comment.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.parenthesis.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "IsPost", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.parenthesis.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.bracket.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// Retrieve the numbers that the user entered.", + "t": "comment.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "keyword.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "num1", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Request", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.array.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"text1\"", + "t": "string.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "punctuation.array.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "keyword.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "num2", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Request", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.array.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"text2\"", + "t": "string.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "punctuation.array.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// Convert the entered strings into integers numbers and add.", + "t": "comment.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "total", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "num1", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "AsInt", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "punctuation.parenthesis.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "num2", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "AsInt", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "punctuation.parenthesis.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "italic", + "t": "entity.name.tag.tag-italic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "><", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "bold", + "t": "entity.name.tag.tag-bold", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "totalMessage", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Total = \"", + "t": "string.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "total", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.bracket.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "support.function.cshtml", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "html", + "t": "entity.name.tag.tag-html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "lang", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"en\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "head", + "t": "entity.name.tag.tag-head", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "title", + "t": "entity.name.tag.tag-title", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Add Numbers", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "meta", + "t": "entity.name.tag.tag-meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "charset", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"utf-8\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/>", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "body", + "t": "entity.name.tag.tag-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "entity.name.tag.tag-p", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Enter two whole numbers and then click ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "strong", + "t": "entity.name.tag.tag-strong", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Add", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ".", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "form", + "t": "entity.name.tag.tag-form", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "action", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "method", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"post\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "entity.name.tag.tag-p", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "label", + "t": "entity.name.tag.tag-label", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text1\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "First Number:", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "input", + "t": "entity.name.tag.tag-input", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "type", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "name", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text1\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/>", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "entity.name.tag.tag-p", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "label", + "t": "entity.name.tag.tag-label", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text2\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Second Number:", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "input", + "t": "entity.name.tag.tag-input", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "type", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "name", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"text2\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/>", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "entity.name.tag.tag-p", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "input", + "t": "entity.name.tag.tag-input", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "type", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"submit\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "value", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"Add\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/>", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@* now we call the totalMessage method", + "t": "comment.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t (a multi line razor comment outside code) *@", + "t": "comment.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "entity.name.tag.tag-p", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "@", + "t": "support.function.cshtml", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "totalMessage", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "p", + "t": "entity.name.tag.tag-p", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "@(", + "t": "support.function.cshtml", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "totalMessage", + "t": "ident.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "punctuation.cs", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"!\"", + "t": "string.cs", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "support.function.cshtml", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " An email address (with escaped at character): name@@domain.com", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + } +] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json b/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json new file mode 100644 index 00000000000..9c37eb24e4e --- /dev/null +++ b/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json @@ -0,0 +1,2015 @@ +[ + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "entity.name.tag.tag-div", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"entry\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h1", + "t": "entity.name.tag.tag-h1", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "title", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#if", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "author", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h2", + "t": "entity.name.tag.tag-h2", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "author.firstName", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "author.lastName", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h2", + "t": "entity.name.tag.tag-h2", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Unknown Author", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/if", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "contentBody", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#unless", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "license", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h3", + "t": "entity.name.tag.tag-h3", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"warning\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "WARNING: This entry does not have a license!", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/unless", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "entity.name.tag.tag-div", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"footnotes\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "ul", + "t": "entity.name.tag.tag-ul", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#each", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "footnotes", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "li", + "t": "entity.name.tag.tag-li", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/each", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h1", + "t": "entity.name.tag.tag-h1", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Comments", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "entity.name.tag.tag-div", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"comments\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#each", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "comments", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h2", + "t": "entity.name.tag.tag-h2", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "a", + "t": "entity.name.tag.tag-a", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "href", + "t": "entity.other.attribute-name.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.assign.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"/posts/", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "../permalink", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "string.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "title", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "entity.name.tag.tag-div", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "body", + "t": "variable.parameter.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{{", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/each", + "t": "keyword.helper.handlebars", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}}", + "t": "punctuation.expression.unescaped.handlebars", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + } +] \ No newline at end of file From a5ae040dba85602fef087981cff9e8f24cf6c7f2 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 16:01:56 +0200 Subject: [PATCH 034/117] [js/ts] colorizer tests --- .../javascript/test/colorize-fixtures/test.js | 37 + .../test/colorize-fixtures/test.jsx | 35 + .../test/colorize-results/test_js.json | 2389 +++++ .../test/colorize-results/test_jsx.json | 1806 ++++ .../typescript/test/colorize-fixtures/test.ts | 111 + .../test/colorize-results/test_ts.json | 8241 +++++++++++++++++ 6 files changed, 12619 insertions(+) create mode 100644 extensions/javascript/test/colorize-fixtures/test.js create mode 100644 extensions/javascript/test/colorize-fixtures/test.jsx create mode 100644 extensions/javascript/test/colorize-results/test_js.json create mode 100644 extensions/javascript/test/colorize-results/test_jsx.json create mode 100644 extensions/typescript/test/colorize-fixtures/test.ts create mode 100644 extensions/typescript/test/colorize-results/test_ts.json diff --git a/extensions/javascript/test/colorize-fixtures/test.js b/extensions/javascript/test/colorize-fixtures/test.js new file mode 100644 index 00000000000..aa4f58de32d --- /dev/null +++ b/extensions/javascript/test/colorize-fixtures/test.js @@ -0,0 +1,37 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +var gulp = require('gulp'); +var tsb = require('gulp-tsb'); +var util = require('./lib/util'); +var watcher = require('./lib/watch'); +var assign = require('object-assign'); + +var compilation = tsb.create(assign({ verbose: true }, require('./tsconfig.json').compilerOptions)); + +gulp.task('compile', function() { + return gulp.src('**/*.ts', { base: '.' }) + .pipe(compilation()) + .pipe(gulp.dest('')); +}); + +gulp.task('watch', function() { + var src = gulp.src('**/*.ts', { base: '.' }); + + return watcher('**/*.ts', { base: '.' }) + .pipe(util.incremental(compilation, src)) + .pipe(gulp.dest('')); +}); + +gulp.task('default', ['compile']); + +function cloneArray(arr) { + _.foo(); + var r = []; + for (var i = 0, len = arr.length; i < len; i++) { + r[i] = doClone(arr[i]); + } + return r; +} \ No newline at end of file diff --git a/extensions/javascript/test/colorize-fixtures/test.jsx b/extensions/javascript/test/colorize-fixtures/test.jsx new file mode 100644 index 00000000000..18e667eee21 --- /dev/null +++ b/extensions/javascript/test/colorize-fixtures/test.jsx @@ -0,0 +1,35 @@ +var ToggleText = React.createClass({ + getInitialState: function () { + return { + showDefault: true + } + }, + + toggle: function (e) { + // Prevent following the link. + e.preventDefault(); + + // Invert the chosen default. + // This will trigger an intelligent re-render of the component. + this.setState({ showDefault: !this.state.showDefault }) + }, + + render: function () { + // Default to the default message. + var message = this.props.default; + + // If toggled, show the alternate message. + if (!this.state.showDefault) { + message = this.props.alt; + } + + return ( +
+

Hello {message}!

+ Toggle +
+ ); + } +}); + +React.render(, document.body); \ No newline at end of file diff --git a/extensions/javascript/test/colorize-results/test_js.json b/extensions/javascript/test/colorize-results/test_js.json new file mode 100644 index 00000000000..8392124673b --- /dev/null +++ b/extensions/javascript/test/colorize-results/test_js.json @@ -0,0 +1,2389 @@ +[ + { + "c": "/*---------------------------------------------------------------------------------------------", + "t": "js.block.comment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * Copyright (c) Microsoft Corporation. All rights reserved.", + "t": "js.block.comment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * Licensed under the MIT License. See License.txt in the project root for license information.", + "t": "js.block.comment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " *--------------------------------------------------------------------------------------------*/", + "t": "js.block.comment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "var", + "t": "meta.js.storage.type.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gulp", + "t": "meta.js.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = require", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'gulp'", + "t": "meta.js.string.single.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.storage.type.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "tsb", + "t": "meta.js.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = require", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'gulp-tsb'", + "t": "meta.js.string.single.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.storage.type.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "util", + "t": "meta.js.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = require", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'./lib/util'", + "t": "meta.js.string.single.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.storage.type.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "watcher", + "t": "meta.js.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = require", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'./lib/watch'", + "t": "meta.js.string.single.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.storage.type.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "assign", + "t": "meta.js.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = require", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'object-assign'", + "t": "meta.js.string.single.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.storage.type.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "compilation", + "t": "meta.js.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = tsb.create", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "assign", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "verbose: ", + "t": "meta.js.block.object.member.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "meta.js.block.object.member.var.expr.var-single-variable.constant.language.boolean", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "meta.js.block.object.member.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", require", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'./tsconfig.json'", + "t": "meta.js.string.single.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".compilerOptions", + "t": "meta.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "meta.brace.paren.js.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gulp.task", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'compile'", + "t": "js.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.js.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "()", + "t": "meta.brace.js.function.type.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.js.block.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " gulp.src", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'**/*.ts'", + "t": "meta.js.string.single.block.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "base: ", + "t": "meta.js.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'.'", + "t": "meta.js.string.single.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "meta.js.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t.pipe", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "compilation", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "())", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t.pipe", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gulp.dest", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "''", + "t": "meta.js.string.single.block.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "))", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gulp.task", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'watch'", + "t": "js.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.js.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "()", + "t": "meta.brace.js.function.type.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.js.block.function.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.block.function.storage.type.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "src", + "t": "meta.js.block.function.decl.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = gulp.src", + "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'**/*.ts'", + "t": "meta.js.string.single.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "base: ", + "t": "meta.js.block.object.member.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'.'", + "t": "meta.js.string.single.block.object.member.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "meta.js.block.object.member.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.js.block.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " watcher", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'**/*.ts'", + "t": "meta.js.string.single.block.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "base: ", + "t": "meta.js.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'.'", + "t": "meta.js.string.single.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "meta.js.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t.pipe", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "util.incremental", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "compilation, src", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t.pipe", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gulp.dest", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "''", + "t": "meta.js.string.single.block.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "))", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gulp.task", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'default'", + "t": "js.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "meta.brace.js.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'compile'", + "t": "meta.js.string.single.array.literal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "]", + "t": "meta.brace.js.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.js.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cloneArray", + "t": "meta.js.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.js.function.type.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arr", + "t": "meta.js.function.type.parameter.variable.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.js.function.type.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " _.foo", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.block.function.storage.type.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "r", + "t": "meta.js.block.function.decl.var.expr.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[]", + "t": "meta.brace.js.block.function.decl.var.expr.var-single-variable.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "meta.js.block.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.js.block.function.storage.type.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " i ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "meta.js.block.function.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "meta.js.block.function.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ", len ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "meta.js.block.function.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " arr.length; i ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.js.block.function.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " len; i", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "meta.js.block.function.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " r", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "meta.brace.js.block.function.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "i", + "t": "meta.js.block.function.decl.array.literal", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "meta.brace.js.block.function.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "meta.js.block.function.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " doClone", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "arr", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "meta.brace.js.block.function.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "i", + "t": "meta.js.block.function.decl.array.literal", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "meta.brace.js.block.function.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.brace.paren.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.js.block.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " r;", + "t": "meta.js.block.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.brace.js.block.curly.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/javascript/test/colorize-results/test_jsx.json b/extensions/javascript/test/colorize-results/test_jsx.json new file mode 100644 index 00000000000..2bdea6c9fbd --- /dev/null +++ b/extensions/javascript/test/colorize-results/test_jsx.json @@ -0,0 +1,1806 @@ +[ + { + "c": "var", + "t": "meta.var.expr.js.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.var.expr.js", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ToggleText", + "t": "meta.var.expr.js.var-single-variable.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = React.createClass", + "t": "meta.var.expr.js.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.var.expr.js.var-single-variable.brace.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "getInitialState: ", + "t": "meta.var.expr.js.var-single-variable.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " showDefault: ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.boolean", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "meta.var.expr.js.var-single-variable.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "toggle: ", + "t": "meta.var.expr.js.var-single-variable.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "e", + "t": "meta.var.expr.js.type.var-single-variable.variable.block.object.member.function.parameter.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// Prevent following the link.", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " e.preventDefault", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// Invert the chosen default.", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// This will trigger an intelligent re-render of the component.", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".setState", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " showDefault: ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "!", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "this", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".state.showDefault ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "meta.var.expr.js.var-single-variable.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "render: ", + "t": "meta.var.expr.js.var-single-variable.block.object.member", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// Default to the default message.", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "message", + "t": "meta.var.expr.js.var-single-variable.variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".props.default;", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// If toggled, show the alternate message.", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "!", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "this", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".state.showDefault", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " message ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".props.alt;", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "div", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "h1", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Hello ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.start", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "message", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "!", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "a", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.open.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "href", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.entity.open.attribute-name.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.tag.without-attributes.open.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "\"", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.open.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "onClick", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.entity.open.attribute-name.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.tag.without-attributes.open.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "{", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.start.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "this", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.constant.language.this.tag.without-attributes.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ".toggle", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ">", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Toggle", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.punctuation.definition.end.close", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "meta.var.expr.js.var-single-variable.brace.block.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.var.expr.js.var-single-variable.brace.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "React.render", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "meta.js.brace.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "js.tag.punctuation.definition.begin.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ToggleText", + "t": "js.name.tag.entity.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.js.tag.open.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "default", + "t": "meta.js.tag.entity.open.attribute-name.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "js.keyword.operator.tag.open.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "\"", + "t": "js.tag.punctuation.definition.begin.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "World", + "t": "js.tag.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "js.tag.punctuation.definition.end.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "meta.js.tag.open.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "alt", + "t": "meta.js.tag.entity.open.attribute-name.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "js.keyword.operator.tag.open.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "\"", + "t": "js.tag.punctuation.definition.begin.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "Mars", + "t": "js.tag.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "js.tag.punctuation.definition.end.open.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "js.tag.open", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/>", + "t": "js.tag.punctuation.definition.end.open", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", document.body", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "meta.js.brace.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/typescript/test/colorize-fixtures/test.ts b/extensions/typescript/test/colorize-fixtures/test.ts new file mode 100644 index 00000000000..b9c80efd386 --- /dev/null +++ b/extensions/typescript/test/colorize-fixtures/test.ts @@ -0,0 +1,111 @@ +/* Game of Life + * Implemented in TypeScript + * To learn more about TypeScript, please visit http://www.typescriptlang.org/ + */ + +module Conway { + + export class Cell { + public row: number; + public col: number; + public live: boolean; + + constructor(row: number, col: number, live: boolean) { + this.row = row; + this.col = col; + this.live = live + } + } + + export class GameOfLife { + private gridSize: number; + private canvasSize: number; + private lineColor: string; + private liveColor: string; + private deadColor: string; + private initialLifeProbability: number; + private animationRate: number; + private cellSize: number; + private world; + + + constructor() { + this.gridSize = 50; + this.canvasSize = 600; + this.lineColor = '#cdcdcd'; + this.liveColor = '#666'; + this.deadColor = '#eee'; + this.initialLifeProbability = 0.5; + this.animationRate = 60; + this.cellSize = 0; + this.world = this.createWorld(); + this.circleOfLife(); + } + + public createWorld() { + return this.travelWorld( (cell : Cell) => { + cell.live = Math.random() < this.initialLifeProbability; + return cell; + }); + } + + public circleOfLife() : void { + this.world = this.travelWorld( (cell: Cell) => { + cell = this.world[cell.row][cell.col]; + this.draw(cell); + return this.resolveNextGeneration(cell); + }); + setTimeout( () => {this.circleOfLife()}, this.animationRate); + } + + public resolveNextGeneration(cell : Cell) { + var count = this.countNeighbors(cell); + var newCell = new Cell(cell.row, cell.col, cell.live); + if(count < 2 || count > 3) newCell.live = false; + else if(count == 3) newCell.live = true; + return newCell; + } + + public countNeighbors(cell : Cell) { + var neighbors = 0; + for(var row = -1; row <=1; row++) { + for(var col = -1; col <= 1; col++) { + if(row == 0 && col == 0) continue; + if(this.isAlive(cell.row + row, cell.col + col)) { + neighbors++; + } + } + } + return neighbors; + } + + public isAlive(row : number, col : number) { + if(row < 0 || col < 0 || row >= this.gridSize || col >= this.gridSize) return false; + return this.world[row][col].live; + } + + public travelWorld(callback) { + var result = []; + for(var row = 0; row < this.gridSize; row++) { + var rowData = []; + for(var col = 0; col < this.gridSize; col++) { + rowData.push(callback(new Cell(row, col, false))); + } + result.push(rowData); + } + return result; + } + + public draw(cell : Cell) { + if(this.cellSize == 0) this.cellSize = this.canvasSize/this.gridSize; + + this.context.strokeStyle = this.lineColor; + this.context.strokeRect(cell.row * this.cellSize, cell.col*this.cellSize, this.cellSize, this.cellSize); + this.context.fillStyle = cell.live ? this.liveColor : this.deadColor; + this.context.fillRect(cell.row * this.cellSize, cell.col*this.cellSize, this.cellSize, this.cellSize); + } + + } +} + +var game = new Conway.GameOfLife(); diff --git a/extensions/typescript/test/colorize-results/test_ts.json b/extensions/typescript/test/colorize-results/test_ts.json new file mode 100644 index 00000000000..c403a1df8bd --- /dev/null +++ b/extensions/typescript/test/colorize-results/test_ts.json @@ -0,0 +1,8241 @@ +[ + { + "c": "/* Game of Life", + "t": "comment.block.ts", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * Implemented in TypeScript", + "t": "comment.block.ts", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " * To learn more about TypeScript, please visit http://www.typescriptlang.org/", + "t": "comment.block.ts", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " */", + "t": "comment.block.ts", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "module", + "t": "ts.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " Conway ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "block.ts.meta", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "export", + "t": "block.ts.storage.type.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "block.ts.storage.type.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Cell", + "t": "block.ts.meta.declaration.object.name.entity.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "col", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "live", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "boolean", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "constructor", + "t": "block.ts.storage.type.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "(", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "col", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "live", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "boolean", + "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " row;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " col;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".live ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " live", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "block.ts.meta", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "export", + "t": "block.ts.storage.type.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "block.ts.storage.type.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "GameOfLife", + "t": "block.ts.meta.declaration.object.name.entity.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gridSize", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "canvasSize", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "lineColor", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "string", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "liveColor", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "string", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "deadColor", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "string", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "initialLifeProbability", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "animationRate", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cellSize", + "t": "block.ts.meta.declaration.object.body.field.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.meta.declaration.object.body.field", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "private", + "t": "block.ts.storage.meta.declaration.object.body.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " world;", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "constructor", + "t": "block.ts.storage.type.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "()", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".gridSize ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "50", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".canvasSize ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "600", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".lineColor ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'#cdcdcd'", + "t": "block.ts.meta.declaration.object.body.method.decl.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".liveColor ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'#666'", + "t": "block.ts.meta.declaration.object.body.method.decl.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".deadColor ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'#eee'", + "t": "block.ts.meta.declaration.object.body.method.decl.string.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".initialLifeProbability ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0.5", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".animationRate ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "60", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".world ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".createWorld", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".circleOfLife", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "createWorld", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".travelWorld", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell : Cell", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=>", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\tcell.live ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " Math.random", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".initialLifeProbability;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " cell;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "circleOfLife", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "void", + "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.body.method.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".world ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".travelWorld", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell: Cell", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=>", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\tcell ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".world", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell.row", + "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "][", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell.col", + "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".draw", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".resolveNextGeneration", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\tsetTimeout", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=>", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".circleOfLife", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".animationRate", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "resolveNextGeneration", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Cell", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "count", + "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".countNeighbors", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "newCell", + "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.var.expr.var-single-variable.new.others", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable.new", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Cell", + "t": "block.ts.type.meta.declaration.object.name.body.method.decl.var.expr.var-single-variable.new", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell.row, cell.col, cell.live", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "count ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " count ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " newCell.live ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "false", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "count ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " newCell.live ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " newCell;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "countNeighbors", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Cell", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "neighbors", + "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "1", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "; row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "1", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "; row", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "1", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "; col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "; col", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "&&", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "continue", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".isAlive", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell.row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " row, cell.col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " col", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "))", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t\t\tneighbors", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " neighbors;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "isAlive", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "col", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "number", + "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".gridSize ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".gridSize", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "false", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".world", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row", + "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "][", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "col", + "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".live;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "travelWorld", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "callback", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "result", + "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[]", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "; row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".gridSize; row", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "rowData", + "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[]", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "; col ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".gridSize; col", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t\trowData.push", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "callback", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.expr.new.others", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl.expr.new", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Cell", + "t": "block.ts.type.meta.declaration.object.name.body.method.decl.expr.new", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "row, col, ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "false", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ")))", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t\tresult.push", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "rowData", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " result;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "public", + "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "draw", + "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell", + "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Cell", + "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".canvasSize", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".gridSize;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".context.strokeStyle ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".lineColor;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".context.strokeRect", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell.row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize, cell.col", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize, ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize, ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".context.fillStyle ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " cell.live ? ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".liveColor : ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".deadColor;", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".context.fillRect", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cell.row ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize, cell.col", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize, ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize, ", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this", + "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ".cellSize", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "block.ts.meta.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "block.ts.meta.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly.declaration.object.body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "block.ts.meta.brace.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "var", + "t": "ts.storage.type.meta.var.expr", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "ts.meta.var.expr", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "game", + "t": "ts.meta.variable.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "ts.meta.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "ts.meta.keyword.var.expr.var-single-variable.new.others", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "ts.meta.var.expr.var-single-variable.new", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Conway.GameOfLife", + "t": "ts.type.meta.name.var.expr.var-single-variable.new", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "ts.meta.brace.paren.var.expr.var-single-variable", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file From 34470d1810f39009b3772ea54b17e7fbd4584995 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 16:02:45 +0200 Subject: [PATCH 035/117] [xml] colorizer tests --- .../xml/test/colorize-fixtures/test.xml | 20 + .../xml/test/colorize-results/test_xml.json | 1828 +++++++++++++++++ 2 files changed, 1848 insertions(+) create mode 100644 extensions/xml/test/colorize-fixtures/test.xml create mode 100644 extensions/xml/test/colorize-results/test_xml.json diff --git a/extensions/xml/test/colorize-fixtures/test.xml b/extensions/xml/test/colorize-fixtures/test.xml new file mode 100644 index 00000000000..af12b7ea57a --- /dev/null +++ b/extensions/xml/test/colorize-fixtures/test.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + Lucy + 1952-03-03 + bossy, crabby and selfish + + + + + + diff --git a/extensions/xml/test/colorize-results/test_xml.json b/extensions/xml/test/colorize-results/test_xml.json new file mode 100644 index 00000000000..36a28c9e42a --- /dev/null +++ b/extensions/xml/test/colorize-results/test_xml.json @@ -0,0 +1,1828 @@ +[ + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "project", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "target", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "name", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "jar", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "mkdir", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "dir", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "build/jar", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "/>", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "jar", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "destfile", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "build/jar/HelloWorld.jar", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "basedir", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "build/classes", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "manifest", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "attribute", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "name", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "Main-Class", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "value", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "oata.HelloWorld", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "/>", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "xml.punctuation.definition.comment.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "character", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "id", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "Lucy", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "hr", + "t": "meta.tag.xml.entity.name.namespace", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "meta.tag.xml.punctuation.entity.name.namespace.separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "name", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Lucy", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "hr", + "t": "meta.tag.xml.entity.name.namespace", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "meta.tag.xml.punctuation.entity.name.namespace.separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "born", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "1952-03-03", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "qualification", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "bossy, crabby and selfish", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "VisualState", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ".Setters", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": ">", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Setter", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Target", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "inputPanel.Orientation", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Value", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "Vertical", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "/>", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Setter", + "t": "meta.tag.xml.entity.name.localname", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Target", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "inputButton.Margin", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": " ", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Value", + "t": "meta.tag.xml.entity.localname.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "meta.tag.xml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "0,4,0,0", + "t": "meta.tag.xml.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "\"", + "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + } + }, + { + "c": "/>", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "meta.tag.xml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + } +] \ No newline at end of file From 8509d4e47a8e85355353500d0b0636d3fcbd0462 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 16:03:25 +0200 Subject: [PATCH 036/117] even more colorizer tests --- .../fsharp/test/colorize-fixtures/test.fs | 18 + .../fsharp/test/colorize-results/test_fs.json | 1157 +++++++ extensions/go/test/colorize-fixtures/test.go | 24 + .../go/test/colorize-results/test_go.json | 1300 ++++++++ .../groovy/test/colorize-fixtures/test.groovy | 219 ++ .../test/colorize-results/test_groovy.json | 1 + .../ini/test/colorize-fixtures/test.ini | 10 + .../ini/test/colorize-results/test_ini.json | 299 ++ .../lua/test/colorize-fixtures/test.lua | 12 + .../lua/test/colorize-results/test_lua.json | 684 ++++ .../make/test/colorize-fixtures/makefile | 16 + .../make/test/colorize-results/makefile.json | 244 ++ .../markdown/test/colorize-fixtures/test.md | 97 + .../test/colorize-results/test_md.json | 1663 ++++++++++ .../objective-c/test/colorize-fixtures/test.m | 52 + .../test/colorize-results/test_m.json | 2422 ++++++++++++++ .../perl/test/colorize-fixtures/test.pl | 46 + .../perl/test/colorize-results/test_pl.json | 2312 ++++++++++++++ .../php/test/colorize-fixtures/test.php | 46 + .../php/test/colorize-results/test_php.json | 2730 ++++++++++++++++ .../test/colorize-fixtures/test.ps1 | 43 + .../test/colorize-results/test_ps1.json | 2411 ++++++++++++++ .../python/test/colorize-fixtures/tets.py | 12 + .../python/test/colorize-results/tets_py.json | 629 ++++ extensions/r/test/colorize-fixtures/test.r | 24 + .../r/test/colorize-results/test_r.json | 827 +++++ .../ruby/test/colorize-fixtures/test.rb | 46 + .../ruby/test/colorize-results/test_rb.json | 2840 +++++++++++++++++ .../rust/test/colorize-fixtures/test.rs | 15 + .../rust/test/colorize-results/test_rs.json | 574 ++++ .../test/colorize-fixtures/test.shader | 15 + .../test/colorize-results/test_shader.json | 563 ++++ .../test/colorize-fixtures/test.sh | 27 + .../test/colorize-results/test_sh.json | 1828 +++++++++++ .../sql/test/colorize-fixtures/test.sql | 6 + .../sql/test/colorize-results/test_sql.json | 332 ++ .../swift/test/colorize-fixtures/test.swift | 10 + .../test/colorize-results/test_swift.json | 464 +++ extensions/vb/test/colorize-fixtures/test.vb | 25 + .../vb/test/colorize-results/test_vb.json | 2180 +++++++++++++ .../yaml/test/colorize-fixtures/test.yaml | 18 + .../yaml/test/colorize-results/test_yaml.json | 794 +++++ 42 files changed, 27035 insertions(+) create mode 100644 extensions/fsharp/test/colorize-fixtures/test.fs create mode 100644 extensions/fsharp/test/colorize-results/test_fs.json create mode 100644 extensions/go/test/colorize-fixtures/test.go create mode 100644 extensions/go/test/colorize-results/test_go.json create mode 100644 extensions/groovy/test/colorize-fixtures/test.groovy create mode 100644 extensions/groovy/test/colorize-results/test_groovy.json create mode 100644 extensions/ini/test/colorize-fixtures/test.ini create mode 100644 extensions/ini/test/colorize-results/test_ini.json create mode 100644 extensions/lua/test/colorize-fixtures/test.lua create mode 100644 extensions/lua/test/colorize-results/test_lua.json create mode 100644 extensions/make/test/colorize-fixtures/makefile create mode 100644 extensions/make/test/colorize-results/makefile.json create mode 100644 extensions/markdown/test/colorize-fixtures/test.md create mode 100644 extensions/markdown/test/colorize-results/test_md.json create mode 100644 extensions/objective-c/test/colorize-fixtures/test.m create mode 100644 extensions/objective-c/test/colorize-results/test_m.json create mode 100644 extensions/perl/test/colorize-fixtures/test.pl create mode 100644 extensions/perl/test/colorize-results/test_pl.json create mode 100644 extensions/php/test/colorize-fixtures/test.php create mode 100644 extensions/php/test/colorize-results/test_php.json create mode 100644 extensions/powershell/test/colorize-fixtures/test.ps1 create mode 100644 extensions/powershell/test/colorize-results/test_ps1.json create mode 100644 extensions/python/test/colorize-fixtures/tets.py create mode 100644 extensions/python/test/colorize-results/tets_py.json create mode 100644 extensions/r/test/colorize-fixtures/test.r create mode 100644 extensions/r/test/colorize-results/test_r.json create mode 100644 extensions/ruby/test/colorize-fixtures/test.rb create mode 100644 extensions/ruby/test/colorize-results/test_rb.json create mode 100644 extensions/rust/test/colorize-fixtures/test.rs create mode 100644 extensions/rust/test/colorize-results/test_rs.json create mode 100644 extensions/shaderlab/test/colorize-fixtures/test.shader create mode 100644 extensions/shaderlab/test/colorize-results/test_shader.json create mode 100644 extensions/shellscript/test/colorize-fixtures/test.sh create mode 100644 extensions/shellscript/test/colorize-results/test_sh.json create mode 100644 extensions/sql/test/colorize-fixtures/test.sql create mode 100644 extensions/sql/test/colorize-results/test_sql.json create mode 100644 extensions/swift/test/colorize-fixtures/test.swift create mode 100644 extensions/swift/test/colorize-results/test_swift.json create mode 100644 extensions/vb/test/colorize-fixtures/test.vb create mode 100644 extensions/vb/test/colorize-results/test_vb.json create mode 100644 extensions/yaml/test/colorize-fixtures/test.yaml create mode 100644 extensions/yaml/test/colorize-results/test_yaml.json diff --git a/extensions/fsharp/test/colorize-fixtures/test.fs b/extensions/fsharp/test/colorize-fixtures/test.fs new file mode 100644 index 00000000000..7ad49b9deef --- /dev/null +++ b/extensions/fsharp/test/colorize-fixtures/test.fs @@ -0,0 +1,18 @@ +// from https://msdn.microsoft.com/en-us/library/dd233160.aspx + +// The declaration creates a constructor that takes two values, name and age. +type Person(name:string, age:int) = + let mutable internalAge = age + + new(name:string) = Person(name, 0) + + member this.Name = name + // A read/write property. + member this.Age + with get() = internalAge + and set(value) = internalAge <- value + + member this.HasABirthday () = internalAge <- internalAge + 1 + member this.IsOfAge targetAge = internalAge >= targetAge + override this.ToString () = + "Name: " + name + "\n" + "Age: " + (string)internalAge \ No newline at end of file diff --git a/extensions/fsharp/test/colorize-results/test_fs.json b/extensions/fsharp/test/colorize-results/test_fs.json new file mode 100644 index 00000000000..f4e85f91d20 --- /dev/null +++ b/extensions/fsharp/test/colorize-results/test_fs.json @@ -0,0 +1,1157 @@ +[ + { + "c": "// from https://msdn.microsoft.com/en-us/library/dd233160.aspx", + "t": "comment.line.double-slash.fsharp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "// The declaration creates a constructor that takes two values, name and age.", + "t": "comment.line.double-slash.fsharp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "type Person(name", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "string, age", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "int) ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "let mutable", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "internalAge", + "t": "fsharp.other.meta.binding.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " age", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "(name", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "string) ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " Person(name, ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "fsharp.constant.numeric.integer.nativeint", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "member", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this.Name", + "t": "fsharp.other.meta.binding.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " name", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// A read/write property.", + "t": "comment.line.double-slash.fsharp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "member", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this.Age", + "t": "fsharp.other.meta.binding.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "with", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " get", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "fsharp.constant.language.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " internalAge", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "and", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " set(value) ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " internalAge ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<-", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " value", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "member", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this.HasABirthday", + "t": "fsharp.other.meta.binding.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "fsharp.meta.binding.constant.language.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " internalAge ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<-", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " internalAge ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "fsharp.constant.numeric.integer.nativeint", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "member", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this.IsOfAge", + "t": "fsharp.other.meta.binding.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "targetAge", + "t": "fsharp.meta.binding.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " internalAge ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">=", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " targetAge", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "override", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "this.ToString", + "t": "fsharp.other.meta.binding.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "fsharp.meta.binding.constant.language.unit", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "fsharp.meta.binding", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "fsharp.keyword.other.meta.binding", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "fsharp.string.quoted.double.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Name: ", + "t": "fsharp.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "fsharp.string.quoted.double.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " name ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "fsharp.string.quoted.double.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\n", + "t": "fsharp.constant.string.quoted.double.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "fsharp.string.quoted.double.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "fsharp.string.quoted.double.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Age: ", + "t": "fsharp.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "fsharp.string.quoted.double.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "fsharp.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " (string)internalAge", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/go/test/colorize-fixtures/test.go b/extensions/go/test/colorize-fixtures/test.go new file mode 100644 index 00000000000..ef1d22a3bff --- /dev/null +++ b/extensions/go/test/colorize-fixtures/test.go @@ -0,0 +1,24 @@ +package main + +import ( + "encoding/base64" + "fmt" +) + +func main() { + dnsName := "test-vm-from-go" + storageAccount := "mystorageaccount" + + client, err := management.ClientFromPublishSettingsFile("path/to/downloaded.publishsettings", "") + if err != nil { + panic(err) + } + + // create virtual machine + role := vmutils.NewVMConfiguration(dnsName, vmSize) + vmutils.ConfigureDeploymentFromPlatformImage( + &role, + vmImage, + fmt.Sprintf("http://%s.blob.core.windows.net/sdktest/%s.vhd", storageAccount, dnsName), + "") +} \ No newline at end of file diff --git a/extensions/go/test/colorize-results/test_go.json b/extensions/go/test/colorize-results/test_go.json new file mode 100644 index 00000000000..fae4de9a764 --- /dev/null +++ b/extensions/go/test/colorize-results/test_go.json @@ -0,0 +1,1300 @@ +[ + { + "c": "package", + "t": "keyword.package.go", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "main", + "t": "package.go.entity.name", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "import", + "t": "keyword.go.import", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "encoding/base64", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "fmt", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "func", + "t": "keyword.go.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "main", + "t": "entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "go.punctuation.other.bracket.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "dnsName", + "t": "go.other.variable.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":=", + "t": "keyword.go.assignment.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "test-vm-from-go", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "storageAccount", + "t": "go.other.variable.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":=", + "t": "keyword.go.assignment.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "mystorageaccount", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "client", + "t": "go.other.variable.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "err", + "t": "go.other.variable.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":=", + "t": "keyword.go.assignment.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " management", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "go.punctuation.other.period", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ClientFromPublishSettingsFile", + "t": "go.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "path/to/downloaded.publishsettings", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.go.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " err ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "!=", + "t": "keyword.go.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nil", + "t": "go.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "go.punctuation.other.bracket.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "panic", + "t": "go.function.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "err", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "go.punctuation.other.bracket.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "//", + "t": "go.punctuation.definition.comment.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " create virtual machine", + "t": "go.comment.line.double-slash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "role", + "t": "go.other.variable.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":=", + "t": "keyword.go.assignment.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " vmutils", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "go.punctuation.other.period", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NewVMConfiguration", + "t": "go.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "dnsName", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " vmSize", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " vmutils", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "go.punctuation.other.period", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ConfigureDeploymentFromPlatformImage", + "t": "go.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "&", + "t": "keyword.go.operator.address", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "role", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " vmImage", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " fmt", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "go.punctuation.other.period", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Sprintf", + "t": "go.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "http://", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%s", + "t": "go.other.string.quoted.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ".blob.core.windows.net/sdktest/", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "%s", + "t": "go.other.string.quoted.double.constant.placeholder", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ".vhd", + "t": "go.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " storageAccount", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " dnsName", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "go.punctuation.other.comma", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "go.punctuation.string.quoted.double.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "go.punctuation.other.bracket.round", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "go.punctuation.other.bracket.curly", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/groovy/test/colorize-fixtures/test.groovy b/extensions/groovy/test/colorize-fixtures/test.groovy new file mode 100644 index 00000000000..f367f30058a --- /dev/null +++ b/extensions/groovy/test/colorize-fixtures/test.groovy @@ -0,0 +1,219 @@ + +// Hello World +println "Hello world!" + +/* + Variables: + + You can assign values to variables for later use +*/ + +def x = 1 +println x + +x = new java.util.Date() +println x + +x = -3.1499392 +println x + +x = false +println x + +x = "Groovy!" +println x + +/* + Collections and maps +*/ + +//Creating an empty list +def technologies = [] + +/*** Adding a elements to the list ***/ + +// As with Java +technologies.add("Grails") + +// Left shift adds, and returns the list +technologies << "Groovy" + +// Add multiple elements +technologies.addAll(["Gradle","Griffon"]) + +/*** Removing elements from the list ***/ + +// As with Java +technologies.remove("Griffon") + +// Subtraction works also +technologies = technologies - 'Grails' + +/*** Iterating Lists ***/ + +// Iterate over elements of a list +technologies.each { println "Technology: $it"} +technologies.eachWithIndex { it, i -> println "$i: $it"} + +/*** Checking List contents ***/ + +//Evaluate if a list contains element(s) (boolean) +contained = technologies.contains( 'Groovy' ) + +// Or +contained = 'Groovy' in technologies + +// To sort without mutating original, you can do: +sortedTechnologies = technologies.sort( false ) + + +//Replace all elements in the list +Collections.replaceAll(technologies, 'Gradle', 'gradle') + +//Shuffle a list +Collections.shuffle(technologies, new Random()) + +//Clear a list +technologies.clear() + +//Creating an empty map +def devMap = [:] + +//Add values +devMap = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy'] +devMap.put('lastName','Perez') + +//Iterate over elements of a map +devMap.each { println "$it.key: $it.value" } +devMap.eachWithIndex { it, i -> println "$i: $it"} + +//Evaluate if a map contains a key +assert devMap.containsKey('name') + +//Get the keys of a map +println devMap.keySet() + +class Foo { + // read only property + final String name = "Roberto" + + // read only property with public getter and protected setter + String language + protected void setLanguage(String language) { this.language = language } + + // dynamically typed property + def lastName +} + +/* + Logical Branching and Looping +*/ + +//Groovy supports the usual if - else syntax +def x = 3 + +if(x==1) { + println "One" +} else if(x==2) { + println "Two" +} else { + println "X greater than Two" +} + +//Groovy also supports the ternary operator: +def y = 10 +def x = (y > 1) ? "worked" : "failed" +assert x == "worked" + +//Groovy supports 'The Elvis Operator' too! +//Instead of using the ternary operator: + +displayName = user.name ? user.name : 'Anonymous' + +//We can write it: +displayName = user.name ?: 'Anonymous' + +//For loop +//Iterate over a range +def x = 0 +for (i in 0 .. 30) { + x += i +} + +//Iterate over a list +x = 0 +for( i in [5,3,2,1] ) { + x += i +} + +//Iterate over an array +array = (0..20).toArray() +x = 0 +for (i in array) { + x += i +} + +//Iterate over a map +def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy'] +x = 0 +for ( e in map ) { + x += e.value +} + +def technologies = ['Groovy','Grails','Gradle'] +technologies*.toUpperCase() // = to technologies.collect { it?.toUpperCase() } + +def user = User.get(1) +def username = user?.username + +def clos = { println "Hello World!" } + +def sum = { a, b -> println a+b } +sum(2,4) + +def x = 5 +def multiplyBy = { num -> num * x } +println multiplyBy(10) + +def clos = { print it } +clos( "hi" ) + +def cl = {a, b -> + sleep(3000) // simulate some time consuming processing + a + b +} + +mem = cl.memoize() + +def callClosure(a, b) { + def start = System.currentTimeMillis() + mem(a, b) + println "Inputs(a = $a, b = $b) - took ${System.currentTimeMillis() - start} msecs." +} + +callClosure(1, 2) + +//Another example: +import groovy.transform.TypeChecked + +@TypeChecked +Integer test() { + Integer num = "1" + + Integer[] numbers = [1,2,3,4] + + Date date = numbers[1] + + return "Test" + +} + +//CompileStatic example: +import groovy.transform.CompileStatic + +@CompileStatic +int sum(int x, int y) { + x + y +} + +assert sum(2,5) == 7 diff --git a/extensions/groovy/test/colorize-results/test_groovy.json b/extensions/groovy/test/colorize-results/test_groovy.json new file mode 100644 index 00000000000..0637a088a01 --- /dev/null +++ b/extensions/groovy/test/colorize-results/test_groovy.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/extensions/ini/test/colorize-fixtures/test.ini b/extensions/ini/test/colorize-fixtures/test.ini new file mode 100644 index 00000000000..1461ad45d9e --- /dev/null +++ b/extensions/ini/test/colorize-fixtures/test.ini @@ -0,0 +1,10 @@ +; last modified 1 April 2001 by John Doe +[owner] +name=John Doe +organization=Acme Widgets Inc. + +[database] +; use IP address in case network name resolution is not working +server=192.0.2.62 +port=143 +file="payroll.dat" \ No newline at end of file diff --git a/extensions/ini/test/colorize-results/test_ini.json b/extensions/ini/test/colorize-results/test_ini.json new file mode 100644 index 00000000000..c2a4da490e3 --- /dev/null +++ b/extensions/ini/test/colorize-results/test_ini.json @@ -0,0 +1,299 @@ +[ + { + "c": ";", + "t": "comment.line.semicolon.ini.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " last modified 1 April 2001 by John Doe", + "t": "comment.line.semicolon.ini", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "[", + "t": "ini.punctuation.definition.entity.name.section.group-title", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "owner", + "t": "ini.entity.name.section.group-title", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "ini.punctuation.definition.entity.name.section.group-title", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "name", + "t": "ini.definition.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "=", + "t": "ini.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "John Doe", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "organization", + "t": "ini.definition.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "=", + "t": "ini.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Acme Widgets Inc.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "ini.punctuation.definition.entity.name.section.group-title", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "database", + "t": "ini.entity.name.section.group-title", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "ini.punctuation.definition.entity.name.section.group-title", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "comment.line.semicolon.ini.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " use IP address in case network name resolution is not working", + "t": "comment.line.semicolon.ini", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "server", + "t": "ini.definition.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "=", + "t": "ini.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "192.0.2.62", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "port", + "t": "ini.definition.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "=", + "t": "ini.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "143", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "file", + "t": "ini.definition.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "=", + "t": "ini.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "ini.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "payroll.dat", + "t": "ini.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "ini.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + } +] \ No newline at end of file diff --git a/extensions/lua/test/colorize-fixtures/test.lua b/extensions/lua/test/colorize-fixtures/test.lua new file mode 100644 index 00000000000..6cdfad5fa35 --- /dev/null +++ b/extensions/lua/test/colorize-fixtures/test.lua @@ -0,0 +1,12 @@ + -- defines a factorial function + function fact (n) + if n == 0 then + return 1 + else + return n * fact(n-1) + end + end + + print("enter a number:") + a = io.read("*number") -- read a number + print(fact(a)) \ No newline at end of file diff --git a/extensions/lua/test/colorize-results/test_lua.json b/extensions/lua/test/colorize-results/test_lua.json new file mode 100644 index 00000000000..20f9a4943c9 --- /dev/null +++ b/extensions/lua/test/colorize-results/test_lua.json @@ -0,0 +1,684 @@ +[ + { + "c": " ", + "t": "punctuation.whitespace.comment.leading.lua", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "--", + "t": "punctuation.comment.lua.line.double-dash.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " defines a factorial function", + "t": "comment.lua.line.double-dash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "lua.meta.function.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "lua.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fact", + "t": "lua.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "lua.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.lua.definition.meta.function.parameters.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "n", + "t": "lua.meta.function.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.lua.definition.meta.function.parameters.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " n ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "lua.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "lua.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "then", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "lua.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " n ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "lua.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fact", + "t": "lua.function.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(n", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "lua.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "1", + "t": "lua.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "lua.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "lua.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "punctuation.lua.definition.begin.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "enter a number:", + "t": "lua.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "punctuation.lua.definition.end.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " a ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "lua.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "io.read", + "t": "lua.function.support.library", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "punctuation.lua.definition.begin.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "*number", + "t": "lua.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "punctuation.lua.definition.end.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ") ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "--", + "t": "punctuation.comment.lua.line.double-dash.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " read a number", + "t": "comment.lua.line.double-dash", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "lua.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fact", + "t": "lua.function.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(a))", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/make/test/colorize-fixtures/makefile b/extensions/make/test/colorize-fixtures/makefile new file mode 100644 index 00000000000..4a55cc5ea2b --- /dev/null +++ b/extensions/make/test/colorize-fixtures/makefile @@ -0,0 +1,16 @@ +all: hello + +hello: main.o factorial.o hello.o + g++ main.o factorial.o hello.o -o hello + +main.o: main.cpp + g++ -c main.cpp + +factorial.o: factorial.cpp + g++ -c factorial.cpp + +hello.o: hello.cpp + g++ -c hello.cpp + +clean: + rm *o hello \ No newline at end of file diff --git a/extensions/make/test/colorize-results/makefile.json b/extensions/make/test/colorize-results/makefile.json new file mode 100644 index 00000000000..21c56844ddc --- /dev/null +++ b/extensions/make/test/colorize-results/makefile.json @@ -0,0 +1,244 @@ +[ + { + "c": "all", + "t": "meta.scope.target.makefile.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " hello", + "t": "meta.scope.target.makefile.prerequisites", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "hello", + "t": "meta.scope.target.makefile.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " main.o factorial.o hello.o", + "t": "meta.scope.target.makefile.prerequisites", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " g++ main.o factorial.o hello.o -o hello", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "main.o", + "t": "meta.scope.target.makefile.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " main.cpp", + "t": "meta.scope.target.makefile.prerequisites", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " g++ -c main.cpp", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "factorial.o", + "t": "meta.scope.target.makefile.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " factorial.cpp", + "t": "meta.scope.target.makefile.prerequisites", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " g++ -c factorial.cpp", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "hello.o", + "t": "meta.scope.target.makefile.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " hello.cpp", + "t": "meta.scope.target.makefile.prerequisites", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " g++ -c hello.cpp", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "clean", + "t": "meta.scope.target.makefile.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " rm *o hello", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/markdown/test/colorize-fixtures/test.md b/extensions/markdown/test/colorize-fixtures/test.md new file mode 100644 index 00000000000..ee7b78e670b --- /dev/null +++ b/extensions/markdown/test/colorize-fixtures/test.md @@ -0,0 +1,97 @@ +# Header 1 # +## Header 2 ## +### Header 3 ### (Hashes on right are optional) +## Markdown plus h2 with a custom ID ## {#id-goes-here} +[Link back to H2](#id-goes-here) + + +
+
+ nested div +
+ + This is a div _with_ underscores + and a & bold element. + +
+ +* Bullet lists are easy too +- Another one ++ Another one + +This is a paragraph, which is text surrounded by +whitespace. Paragraphs can be on one +line (or many), and can drone on for hours. + +Now some inline markup like _italics_, **bold**, +and `code()`. Note that underscores +in_words_are ignored. + +````application/json + { value: ["or with a mime type"] } +```` + +> Blockquotes are like quoted text in email replies +>> And, they can be nested + +1. A numbered list +2. Which is numbered +3. With periods and a space + +And now some code: + + // Code is just text indented a bit + which(is_easy) to_remember(); + +And a block + +~~~ +// Markdown extra adds un-indented code blocks too + +if (this_is_more_code == true && !indented) { + // tild wrapped code blocks, also not indented +} +~~~ + +Text with +two trailing spaces +(on the right) +can be used +for things like poems + +### Horizontal rules + +* * * * +**** +-------------------------- + +![picture alt](/images/photo.jpeg "Title is optional") + +## Markdown plus tables ## + +| Header | Header | Right | +| ------ | ------ | -----: | +| Cell | Cell | $10 | +| Cell | Cell | $20 | + +* Outer pipes on tables are optional +* Colon used for alignment (right versus left) + +## Markdown plus definition lists ## + +Bottled water +: $ 1.25 +: $ 1.55 (Large) + +Milk +Pop +: $ 1.75 + +* Multiple definitions and terms are possible +* Definitions can include multiple paragraphs too + +*[ABBR]: Markdown plus abbreviations (produces an tag) \ No newline at end of file diff --git a/extensions/markdown/test/colorize-results/test_md.json b/extensions/markdown/test/colorize-results/test_md.json new file mode 100644 index 00000000000..695b4dca669 --- /dev/null +++ b/extensions/markdown/test/colorize-results/test_md.json @@ -0,0 +1,1663 @@ +[ + { + "c": "# Header 1 #", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "## Header 2 ##", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "### Header 3 ###", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " (Hashes on right are optional)", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "## Markdown plus h2 with a custom ID ##", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{#id-goes-here}", + "t": "string.target.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "[", + "t": "string.link.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Link back to H2", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "](#id-goes-here)", + "t": "string.link.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "", + "t": "comment.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-div.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "
", + "t": "entity.name.tag.tag-div.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " nested div", + "t": "string.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "
", + "t": "entity.name.tag.tag-div.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-script.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " function( x: int ) { return x*x; }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-script.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " This is a div ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "_with_", + "t": "emphasis.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.emphasis", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.emphasis", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.emphasis", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.emphasis", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.emphasis" + } + }, + { + "c": " underscores", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " and a & ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-b.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "bold", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-b.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " element.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-style.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-div.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "* ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Bullet lists are easy too", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "- ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Another one", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+ ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Another one", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "This is a paragraph, which is text surrounded by", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "whitespace. Paragraphs can be on one", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line (or many), and can drone on for hours.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Now some inline markup like ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "_italics_", + "t": "emphasis.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.emphasis", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.emphasis", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.emphasis", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.emphasis", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.emphasis" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "**bold**", + "t": "strong.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.strong", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.strong", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.strong", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.strong", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.strong" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "and ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "`code()`", + "t": "variable.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ". Note that underscores", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in_words_are ignored.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "````application/json", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{ value: [\"or with a mime type\"] }", + "t": "string.target.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "````", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">", + "t": "comment.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Blockquotes are like quoted text in email replies", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">>", + "t": "comment.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " And, they can be nested", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1. ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "A numbered list", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2. ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Which is numbered", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3. ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "With periods and a space", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "And now some code:", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " // Code is just text indented a bit", + "t": "string.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " which(is_easy) to_remember();", + "t": "string.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "And a block", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "~~~", + "t": "string.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "// Markdown extra adds un-indented code blocks too", + "t": "variable.source.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if (this_is_more_code == true && !indented) {", + "t": "variable.source.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " // tild wrapped code blocks, also not indented", + "t": "variable.source.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "variable.source.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "~~~", + "t": "string.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Text with", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "two trailing spaces", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(on the right)", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "can be used", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for things like poems", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "### Horizontal rules", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "* * * *", + "t": "meta.separator.md", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "****", + "t": "meta.separator.md", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "--------------------------", + "t": "entity.other.attribute-name.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "![", + "t": "string.link.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "picture alt", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "](/images/photo.jpeg \"Title is optional\")", + "t": "string.link.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "## Markdown plus tables ##", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "| Header | Header | Right |", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "| ------ | ------ | -----: |", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "| Cell | Cell | $10 |", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "| Cell | Cell | $20 |", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "* ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Outer pipes on tables are optional", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "* ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Colon used for alignment (right versus left)", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "## Markdown plus definition lists ##", + "t": "entity.name.tag.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "Bottled water", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "$ 1.25", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "$ 1.55 (Large)", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Milk", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Pop", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ": ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "$ 1.75", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "* ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Multiple definitions and terms are possible", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "* ", + "t": "keyword.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Definitions can include multiple paragraphs too", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[ABBR]", + "t": "string.link.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ": Markdown plus abbreviations (produces an ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "entity.name.tag.tag-abbr.md", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " tag)", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/objective-c/test/colorize-fixtures/test.m b/extensions/objective-c/test/colorize-fixtures/test.m new file mode 100644 index 00000000000..d5d31433ae3 --- /dev/null +++ b/extensions/objective-c/test/colorize-fixtures/test.m @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// + +#import "UseQuotes.h" +#import + +/* + Multi + Line + Comments +*/ +@implementation Test + +- (void) applicationWillFinishLaunching:(NSNotification *)notification +{ +} + +- (IBAction)onSelectInput:(id)sender +{ + NSString* defaultDir = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, true)[0]; + + NSOpenPanel* panel = [NSOpenPanel openPanel]; + [panel setAllowedFileTypes:[[NSArray alloc] initWithObjects:@"ipa", @"xcarchive", @"app", nil]]; + + [panel beginWithCompletionHandler:^(NSInteger result) + { + if (result == NSFileHandlingPanelOKButton) + [self.inputTextField setStringValue:[panel.URL path]]; + }]; + return YES; + + int hex = 0xFEF1F0F; + float ing = 3.14; + ing = 3.14e0; + ing = 31.4e-2; +} + +-(id) initWithParams:(id) aHandler withDeviceStateManager:(id) deviceStateManager +{ + // add a tap gesture recognizer + UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)]; + NSMutableArray *gestureRecognizers = [NSMutableArray array]; + [gestureRecognizers addObject:tapGesture]; + [gestureRecognizers addObjectsFromArray:scnView.gestureRecognizers]; + scnView.gestureRecognizers = gestureRecognizers; + + return tapGesture; + return nil; +} + +@end diff --git a/extensions/objective-c/test/colorize-results/test_m.json b/extensions/objective-c/test/colorize-results/test_m.json new file mode 100644 index 00000000000..d53494e56c8 --- /dev/null +++ b/extensions/objective-c/test/colorize-results/test_m.json @@ -0,0 +1,2422 @@ +[ + { + "c": "//", + "t": "comment.line.double-slash.c++.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "//", + "t": "comment.line.double-slash.c++.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Copyright (c) Microsoft Corporation. All rights reserved.", + "t": "comment.line.double-slash.c++", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "//", + "t": "comment.line.double-slash.c++.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "meta.preprocessor.c.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "import", + "t": "meta.preprocessor.c.include.keyword.control.import", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.preprocessor.c.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "\"", + "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "UseQuotes.h", + "t": "meta.preprocessor.c.include.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "\"", + "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "#", + "t": "meta.preprocessor.c.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "import", + "t": "meta.preprocessor.c.include.keyword.control.import", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.preprocessor.c.include", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.begin.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "Use/GTLT.h", + "t": "meta.preprocessor.c.include.string.quoted.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.end.other.lt-gt", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + } + }, + { + "c": "/*", + "t": "comment.punctuation.definition.c.begin.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\tMulti", + "t": "comment.c.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\tLine", + "t": "comment.c.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\tComments", + "t": "comment.c.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "*/", + "t": "comment.punctuation.definition.c.end.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "@", + "t": "punctuation.definition.meta.implementation.objc.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "implementation", + "t": "meta.implementation.objc.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.implementation.objc", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Test", + "t": "meta.implementation.objc.type.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "- ", + "t": "meta.implementation.objc.scope.function-with-body.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "void", + "t": "meta.c.implementation.objc.storage.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "applicationWillFinishLaunching", + "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NSNotification *", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "notification", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "- ", + "t": "meta.implementation.objc.scope.function-with-body.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "IBAction", + "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "onSelectInput", + "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sender", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " NSString* defaultDir = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ")", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.bracketed.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " NSOpenPanel* panel = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NSOpenPanel ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "openPanel", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "panel ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "setAllowedFileTypes", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NSArray ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "alloc", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "initWithObjects", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@\"", + "t": "punctuation.definition.meta.c.string.quoted.double.begin.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "ipa", + "t": "meta.c.string.quoted.double.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "punctuation.definition.meta.c.string.quoted.double.end.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@\"", + "t": "punctuation.definition.meta.c.string.quoted.double.begin.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "xcarchive", + "t": "meta.c.string.quoted.double.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "punctuation.definition.meta.c.string.quoted.double.end.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@\"", + "t": "punctuation.definition.meta.c.string.quoted.double.begin.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "app", + "t": "meta.c.string.quoted.double.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "punctuation.definition.meta.c.string.quoted.double.end.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nil", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "panel ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "beginWithCompletionHandler", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "^(NSInteger result)", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call.initialization", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call.initialization.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "result == NSFileHandlingPanelOKButton)", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "self", + "t": "meta.c.block.implementation.objc.scope.function-with-body.variable.language.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".inputTextField ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "setStringValue", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "panel.URL ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "path", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "YES", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "int", + "t": "meta.c.block.implementation.objc.storage.type.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " hex = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0xFEF1F0F", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "float", + "t": "meta.c.block.implementation.objc.storage.type.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ing = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3.14", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t ing = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3.14e0", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t ing = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "31.4e-2", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "meta.implementation.objc.scope.function-with-body.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "initWithParams", + "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "aHandler", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.implementation.objc.scope.function-with-body.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "withDeviceStateManager", + "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.name-of-parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "deviceStateManager", + "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "comment.c++.punctuation.meta.c.block.implementation.objc.scope.function-with-body.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "//", + "t": "comment.line.double-slash.c++.punctuation.definition.meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " add a tap gesture recognizer", + "t": "comment.line.double-slash.c++.meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " UITapGestureRecognizer *tapGesture = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "UITapGestureRecognizer ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "alloc", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "initWithTarget", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "self", + "t": "meta.c.block.implementation.objc.scope.function-with-body.variable.language.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "action", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.name-of-parameter.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.name-of-parameter.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "punctuation.definition.meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "selector", + "t": "meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "(", + "t": "punctuation.definition.meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "handleTap:", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.name-of-parameter.bracketed.function-call.support.any-method.selector.method-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + } + }, + { + "c": ")", + "t": "punctuation.definition.meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " NSMutableArray *gestureRecognizers = ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NSMutableArray ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "array", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gestureRecognizers ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "addObject", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "tapGesture", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gestureRecognizers ", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "addObjectsFromArray", + "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "scnView.gestureRecognizers", + "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " scnView", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.separator.variable-access", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "gestureRecognizers", + "t": "meta.c.other.block.implementation.objc.scope.function-with-body.variable.dot-access", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = gestureRecognizers;", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " tapGesture;", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nil", + "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ";", + "t": "meta.c.block.implementation.objc.scope.function-with-body", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "punctuation.definition.meta.implementation.objc.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "end", + "t": "meta.implementation.objc.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + } +] \ No newline at end of file diff --git a/extensions/perl/test/colorize-fixtures/test.pl b/extensions/perl/test/colorize-fixtures/test.pl new file mode 100644 index 00000000000..e107dcb539f --- /dev/null +++ b/extensions/perl/test/colorize-fixtures/test.pl @@ -0,0 +1,46 @@ +use strict; + +my $badfound = 0; +sub check_line { + my($fn, $line) = @_; + + # Check for that =. + if($line =~ /^\s*if\s*\(.*[^!<>=]=([^=].*\)|\))/) { + if(!$badfound) { + print("The following suspicious lines were found:\n"); + $badfound = 1; + } + print "$fn:$.: $line\n"; + } +} + +# +# This function opens and reads one file, and calls +# check_line to analyze each line. Call it with the +# file name. +# +sub check_file { + my($fn) = @_; + + if(!open(IN, $fn)) { + print "Cannot read $fn.\n"; + return; + } + + my($line); + while($line = ) + { + chomp $line; + check_line($fn,$line); + } + + close IN; +} + +# +# Go through the argument list and check each file +# +while(my $fn = shift @ARGV) { + check_file($fn); +} +if(!$badfound) { print "No suspicious lines were found.\n"; } \ No newline at end of file diff --git a/extensions/perl/test/colorize-results/test_pl.json b/extensions/perl/test/colorize-results/test_pl.json new file mode 100644 index 00000000000..dcd92b3d249 --- /dev/null +++ b/extensions/perl/test/colorize-results/test_pl.json @@ -0,0 +1,2312 @@ +[ + { + "c": "use", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " strict;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "perl.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "badfound", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = 0;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "sub", + "t": "perl.storage.meta.function.type.sub", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "perl.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "check_line", + "t": "perl.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "perl.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "perl.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ") = ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "perl.variable.other.readwrite.global.punctuation.definition.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "_", + "t": "perl.variable.other.readwrite.global.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "perl.punctuation.whitespace.comment.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Check for that =.", + "t": "perl.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " =~ ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/", + "t": "perl.punctuation.definition.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "^", + "t": "perl.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\s", + "t": "perl.string.regexp.find.constant.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "*if", + "t": "perl.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\s", + "t": "perl.string.regexp.find.constant.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "*", + "t": "perl.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\(", + "t": "perl.string.regexp.find.constant.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": ".*[^!<>=]=([^=].*", + "t": "perl.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\)", + "t": "perl.string.regexp.find.constant.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "|", + "t": "perl.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\)", + "t": "perl.string.regexp.find.constant.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": ")", + "t": "perl.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "/", + "t": "perl.punctuation.definition.string.regexp.find", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": ") {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(!", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "badfound", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ") {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "The following suspicious lines were found:", + "t": "perl.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\n", + "t": "perl.string.constant.character.escape.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "badfound", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = 1;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ":", + "t": "perl.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "perl.variable.other.punctuation.definition.string.quoted.double.predefined", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ".", + "t": "perl.variable.other.string.quoted.double.predefined", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ": ", + "t": "perl.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\n", + "t": "perl.string.constant.character.escape.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " This function opens and reads one file, and calls", + "t": "perl.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " check_line to analyze each line. Call it with the", + "t": "perl.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " file name.", + "t": "perl.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "sub", + "t": "perl.storage.meta.function.type.sub", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "perl.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "check_file", + "t": "perl.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "perl.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "perl.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ") = ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "perl.variable.other.readwrite.global.punctuation.definition.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "_", + "t": "perl.variable.other.readwrite.global.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(!", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "open", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(IN, ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")) {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Cannot read ", + "t": "perl.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ".", + "t": "perl.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\n", + "t": "perl.string.constant.character.escape.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "perl.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "while", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = )", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "chomp", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "check_line(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "line", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "close", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " IN;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Go through the argument list and check each file", + "t": "perl.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "perl.punctuation.definition.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "while", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "my", + "t": "perl.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "shift", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ARGV", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ") {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-tabs.odd-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "check_file(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.control.perl", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(!", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "perl.variable.other.readwrite.global.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "badfound", + "t": "perl.variable.other.readwrite.global", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ") { ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "perl.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "No suspicious lines were found.", + "t": "perl.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\n", + "t": "perl.string.constant.character.escape.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "perl.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "; }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/php/test/colorize-fixtures/test.php b/extensions/php/test/colorize-fixtures/test.php new file mode 100644 index 00000000000..2a641966368 --- /dev/null +++ b/extensions/php/test/colorize-fixtures/test.php @@ -0,0 +1,46 @@ + + + Example page + + + + +"); + + // display shuffled cards (EXAMPLE ONLY) + for ($index = 0; $index < 52; $index++) { + if ($starting_point == 52) { $starting_point = 0; } + print("Uncut Point: $deck[$index] "); + $starting_point++; + } +?> + + + \ No newline at end of file diff --git a/extensions/php/test/colorize-results/test_php.json b/extensions/php/test/colorize-results/test_php.json new file mode 100644 index 00000000000..e5ea4dccb1e --- /dev/null +++ b/extensions/php/test/colorize-results/test_php.json @@ -0,0 +1,2730 @@ +[ + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "html", + "t": "entity.name.tag.tag-html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "head", + "t": "entity.name.tag.tag-head", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "title", + "t": "entity.name.tag.tag-title", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "Example page", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "<", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "body", + "t": "entity.name.tag.tag-body", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ">", + "t": "punctuation.definition.meta.tag.begin.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "\"", + "t": "string.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "// display shuffled cards (EXAMPLE ONLY)", + "t": "comment.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "keyword.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$index", + "t": "variable.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "number.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$index", + "t": "variable.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "52", + "t": "number.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$index", + "t": "variable.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "delimiter.bracket.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$starting_point", + "t": "variable.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "52", + "t": "number.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "delimiter.bracket.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$starting_point", + "t": "variable.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "number.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "delimiter.bracket.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "print", + "t": "keyword.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "(", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Uncut Point: $deck[$index] \"", + "t": "string.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "delimiter.parenthesis.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$starting_point", + "t": "variable.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "++;", + "t": "delimiter.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "delimiter.bracket.php", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "?>", + "t": "metatag.php", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.metatag.php", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.metatag.php", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.metatag.php", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.metatag.php", + "hc_black": ".hc-black .token" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + }, + { + "c": "", + "t": "punctuation.definition.meta.tag.end.html", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + } + } +] \ No newline at end of file diff --git a/extensions/powershell/test/colorize-fixtures/test.ps1 b/extensions/powershell/test/colorize-fixtures/test.ps1 new file mode 100644 index 00000000000..8f524fe823a --- /dev/null +++ b/extensions/powershell/test/colorize-fixtures/test.ps1 @@ -0,0 +1,43 @@ +# Copyright Microsoft Corporation + +function Test-IsAdmin() { + try { + $identity = [Security.Principal.WindowsIdentity]::GetCurrent() + $principal = New-Object Security.Principal.WindowsPrincipal -ArgumentList $identity + return $principal.IsInRole( [Security.Principal.WindowsBuiltInRole]::Administrator ) + } catch { + throw "Failed to determine if the current user has elevated privileges. The error was: '{0}'." -f $_ + } +} + +function Invoke-Environment() +{ + param + ( + [Parameter(Mandatory=1)][string]$Command + ) + + foreach($_ in cmd /c "$Command 2>&1 & set") { + if ($_ -match '^([^=]+)=(.*)') { + [System.Environment]::SetEnvironmentVariable($matches[1], $matches[2]) + } + } +} +Write-Host -Object 'Initializing Azure PowerShell environment...'; + +# PowerShell commands need elevation for dependencies installation and running tests +if (!(Test-IsAdmin)){ + Write-Host -Object 'Please launch command under administrator account. It is needed for environment setting up and unit test.' -ForegroundColor Red; +} + +$env:AzurePSRoot = Split-Path -Parent -Path $env:AzurePSRoot; + +if (Test-Path -Path "$env:ADXSDKProgramFiles\Microsoft Visual Studio 12.0") { + $vsVersion="12.0" +} else { + $vsVersion="11.0" +} + +$setVSEnv = '"{0}\Microsoft Visual Studio {1}\VC\vcvarsall.bat" x64' -f $env:ADXSDKProgramFiles, $vsVersion; + +Invoke-Environment -Command $setVSEnv; \ No newline at end of file diff --git a/extensions/powershell/test/colorize-results/test_ps1.json b/extensions/powershell/test/colorize-results/test_ps1.json new file mode 100644 index 00000000000..9ac4610537e --- /dev/null +++ b/extensions/powershell/test/colorize-results/test_ps1.json @@ -0,0 +1,2411 @@ +[ + { + "c": "# Copyright Microsoft Corporation", + "t": "comment.line.number-sign.powershell", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "function", + "t": "meta.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Test-IsAdmin", + "t": "powershell.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "() {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "try", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "identity", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[Security.Principal.WindowsIdentity]", + "t": "entity.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "::GetCurrent", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "principal", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "New-Object", + "t": "powershell.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " Security.Principal.WindowsPrincipal ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "ArgumentList ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "identity", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "principal", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".IsInRole", + "t": "powershell.function.entity.name.invocation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[Security.Principal.WindowsBuiltInRole]", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "::Administrator ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " } ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "catch", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "throw", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Failed to determine if the current user has elevated privileges. The error was: '{0}'.\"", + "t": "powershell.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-f", + "t": "powershell.keyword.operator.string-format", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "_", + "t": "powershell.support.constant.automatic", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "meta.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Invoke-Environment", + "t": "powershell.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "param", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[Parameter", + "t": "powershell.entity.name.interpolated.simple.source.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "(", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "Mandatory", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source.constant.attribute.parameter.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "=", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source.attribute.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "1", + "t": "powershell.entity.other.variable.attribute-name.interpolated.simple.source.attribute.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": ")", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "]", + "t": "powershell.entity.name.interpolated.simple.source.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": "[string]", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Command", + "t": "powershell.other.variable.readwrite.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "foreach", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "_", + "t": "powershell.support.interpolated.simple.source.constant.automatic", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in", + "t": "powershell.keyword.control.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " cmd ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/", + "t": "powershell.keyword.operator.assignment.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "c ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "powershell.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Command", + "t": "powershell.other.variable.readwrite.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " 2>&1 & set\"", + "t": "powershell.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "_", + "t": "powershell.support.interpolated.simple.source.constant.automatic", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-match", + "t": "powershell.keyword.operator.interpolated.simple.source.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'^([^=]+)=(.*)'", + "t": "powershell.interpolated.simple.source.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[System.Environment]", + "t": "entity.other.attribute-name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "::SetEnvironmentVariable", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "matches", + "t": "powershell.support.interpolated.simple.source.constant.automatic", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "1", + "t": "powershell.support.interpolated.simple.source.constant.numeric.scientific", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": ",", + "t": "powershell.keyword.other.operator.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "matches", + "t": "powershell.support.interpolated.simple.source.constant.automatic", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": "2", + "t": "powershell.support.interpolated.simple.source.constant.numeric.scientific", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Write-Host", + "t": "powershell.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "Object ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'Initializing Azure PowerShell environment...'", + "t": "powershell.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "powershell.keyword.other.statement-separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "# PowerShell commands need elevation for dependencies installation and running tests", + "t": "comment.line.number-sign.powershell", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "if", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "!", + "t": "powershell.keyword.operator.interpolated.simple.source.unary", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "(", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Test-IsAdmin", + "t": "powershell.function.support.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "powershell.keyword.other.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Write-Host", + "t": "powershell.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "Object ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'Please launch command under administrator account. It is needed for environment setting up and unit test.'", + "t": "powershell.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "ForegroundColor Red", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "powershell.keyword.other.statement-separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "env:", + "t": "powershell.variable.support.drive", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "AzurePSRoot", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Split-Path", + "t": "powershell.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "Parent ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "Path ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "env:", + "t": "powershell.variable.support.drive", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "AzurePSRoot", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "powershell.keyword.other.statement-separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "if", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Test-Path", + "t": "powershell.function.support.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "Path ", + "t": "powershell.interpolated.simple.source", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "powershell.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "powershell.keyword.other.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "env:", + "t": "powershell.variable.support.interpolated.simple.source.string.quoted.double.drive", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "ADXSDKProgramFiles", + "t": "powershell.other.variable.readwrite.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\\Microsoft Visual Studio 12.0\"", + "t": "powershell.interpolated.simple.source.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "vsVersion", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "\"12.0\"", + "t": "powershell.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "} ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "powershell.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "vsVersion", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "\"11.0\"", + "t": "powershell.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "setVSEnv", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'\"{0}\\Microsoft Visual Studio {1}\\VC\\vcvarsall.bat\" x64'", + "t": "powershell.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-f", + "t": "powershell.keyword.operator.string-format", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "env:", + "t": "powershell.variable.support.drive", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ADXSDKProgramFiles", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "powershell.keyword.other.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "vsVersion", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "powershell.keyword.other.statement-separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "Invoke-Environment", + "t": "powershell.function.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "powershell.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "Command ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "powershell.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "setVSEnv", + "t": "powershell.other.variable.readwrite", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "powershell.keyword.other.statement-separator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + } +] \ No newline at end of file diff --git a/extensions/python/test/colorize-fixtures/tets.py b/extensions/python/test/colorize-fixtures/tets.py new file mode 100644 index 00000000000..1cd0e7cab93 --- /dev/null +++ b/extensions/python/test/colorize-fixtures/tets.py @@ -0,0 +1,12 @@ +from banana import * + +class Monkey: + # Bananas the monkey can eat. + capacity = 10 + def eat(self, N): + '''Make the monkey eat N bananas!''' + capacity = capacity - N*banana.size + + def feeding_frenzy(self): + eat(9.25) + return "Yum yum" \ No newline at end of file diff --git a/extensions/python/test/colorize-results/tets_py.json b/extensions/python/test/colorize-results/tets_py.json new file mode 100644 index 00000000000..31d5b3fb1b4 --- /dev/null +++ b/extensions/python/test/colorize-results/tets_py.json @@ -0,0 +1,629 @@ +[ + { + "c": "from", + "t": "keyword.control.import.from.python", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " banana ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "import", + "t": "keyword.control.import.python", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.python.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "class", + "t": "python.meta.class.old-style.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "python.meta.class.old-style", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Monkey", + "t": "python.meta.class.old-style.type.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "python.meta.class.old-style.punctuation.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "python.punctuation.whitespace.comment.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "python.punctuation.comment.line.number-sign.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Bananas the monkey can eat.", + "t": "python.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\tcapacity ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.python.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "10", + "t": "python.constant.numeric.integer.decimal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "\t", + "t": "python.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "python.meta.storage.type.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "python.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "eat", + "t": "python.meta.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "python.meta.punctuation.begin.definition.function.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "self", + "t": "python.meta.function.parameters.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "python.meta.punctuation.function.parameters.separator", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "python.meta.function.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "N", + "t": "python.meta.function.parameters.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "python.meta.punctuation.definition.function.parameters.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "python.meta.punctuation.section.begin.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'''", + "t": "python.punctuation.begin.definition.string.quoted.single.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Make the monkey eat N bananas!", + "t": "python.string.quoted.single.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'''", + "t": "python.punctuation.definition.end.string.quoted.single.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\t\tcapacity ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.python.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " capacity ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "keyword.python.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " N", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "keyword.python.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "banana.size", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "python.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "python.meta.storage.type.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "python.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "feeding_frenzy", + "t": "python.meta.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "python.meta.punctuation.begin.definition.function.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "self", + "t": "python.meta.function.parameters.variable.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "python.meta.punctuation.definition.function.parameters.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "python.meta.punctuation.section.begin.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "eat", + "t": "python.meta.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "python.meta.punctuation.begin.definition.function-call.arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "9.25", + "t": "python.meta.constant.numeric.function-call.arguments.float", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "python.meta.punctuation.definition.end.function-call.arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "keyword.control.python.flow", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "python.punctuation.begin.definition.string.quoted.double.single-line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Yum yum", + "t": "python.string.quoted.double.single-line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "python.punctuation.definition.end.string.quoted.double.single-line", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + } +] \ No newline at end of file diff --git a/extensions/r/test/colorize-fixtures/test.r b/extensions/r/test/colorize-fixtures/test.r new file mode 100644 index 00000000000..8262188bc71 --- /dev/null +++ b/extensions/r/test/colorize-fixtures/test.r @@ -0,0 +1,24 @@ +# © Microsoft. All rights reserved. + +#' Add together two numbers. +#' +#' @param x A number. +#' @param y A number. +#' @return The sum of \code{x} and \code{y}. +#' @examples +#' add(1, 1) +#' add(10, 1) +add <- function(x, y) { + x + y +} + +add(1, -2, 2.0) +add(1.0e10, 2.0e10) + +paste("one", NULL) +paste(NA, 'two') + +paste("multi- + line", + 'multi- + line') diff --git a/extensions/r/test/colorize-results/test_r.json b/extensions/r/test/colorize-results/test_r.json new file mode 100644 index 00000000000..cf982ef6f65 --- /dev/null +++ b/extensions/r/test/colorize-results/test_r.json @@ -0,0 +1,827 @@ +[ + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " © Microsoft. All rights reserved.", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' Add together two numbers.", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "'", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' @param x A number.", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' @param y A number.", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' @return The sum of \\code{x} and \\code{y}.", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' @examples", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' add(1, 1)", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.r.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "' add(10, 1)", + "t": "comment.line.number-sign.r", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "add", + "t": "r.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "r.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<-", + "t": "r.meta.function.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "r.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "function", + "t": "r.meta.function.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "x", + "t": "r.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "y", + "t": "r.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ") ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "r.punctuation.meta.block.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "r.meta.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "x", + "t": "r.meta.variable.other.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "r.meta.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "r.meta.keyword.operator.block.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "r.meta.block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "y", + "t": "r.meta.variable.other.block", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "r.punctuation.meta.block.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "add(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "r.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "r.keyword.operator.arithmetic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "2", + "t": "r.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2.0", + "t": "r.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "add(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1.0e10", + "t": "r.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "2.0e10", + "t": "r.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "paste(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "r.punctuation.definition.begin.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "one", + "t": "r.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "r.punctuation.definition.end.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NULL", + "t": "r.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "paste(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "NA", + "t": "r.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "r.punctuation.definition.begin.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "two", + "t": "r.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "r.punctuation.definition.end.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "paste(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "r.punctuation.definition.begin.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "multi-", + "t": "r.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " line", + "t": "r.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "r.punctuation.definition.end.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "r.punctuation.definition.begin.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "multi-", + "t": "r.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " line", + "t": "r.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "r.punctuation.definition.end.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/ruby/test/colorize-fixtures/test.rb b/extensions/ruby/test/colorize-fixtures/test.rb new file mode 100644 index 00000000000..9b81e2fd1cb --- /dev/null +++ b/extensions/ruby/test/colorize-fixtures/test.rb @@ -0,0 +1,46 @@ +# encoding: utf-8 +# Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. + +module Azure::ARM::Scheduler + # + # A service client - single point of access to the REST API. + # + class SchedulerManagementClient < MsRestAzure::AzureServiceClient + include Azure::ARM::Scheduler::Models + include MsRestAzure + + # @return job_collections + attr_reader :job_collections + + # + # Creates initializes a new instance of the SchedulerManagementClient class. + # @param credentials [MsRest::ServiceClientCredentials] credentials to authorize HTTP requests made by the service client. + # @param base_url [String] the base URI of the service. + # @param options [Array] filters to be applied to the HTTP requests. + # + def initialize(credentials, base_url = nil, options = nil) + super(credentials, options) + @base_url = base_url || 'https://management.azure.com' + + fail ArgumentError, 'credentials is nil' if credentials.nil? + fail ArgumentError, 'invalid type of credentials input parameter' unless credentials.is_a?(MsRest::ServiceClientCredentials) + @credentials = credentials + + @job_collections = JobCollections.new(self) + @jobs = Jobs.new(self) + @api_version = '2016-01-01' + @long_running_operation_retry_timeout = 30 + @generate_client_request_id = true + if MacOS.version >= :mavericks + version = `#{MAVERICKS_PKG_PATH}/usr/bin/clang --version` + else + version = `/usr/bin/clang --version` + end + version = version[/clang-(\d+\.\d+\.\d+(\.\d+)?)/, 1] || "0" + version < latest_version + end + + end +end \ No newline at end of file diff --git a/extensions/ruby/test/colorize-results/test_rb.json b/extensions/ruby/test/colorize-results/test_rb.json new file mode 100644 index 00000000000..4c3dc785fef --- /dev/null +++ b/extensions/ruby/test/colorize-results/test_rb.json @@ -0,0 +1,2840 @@ +[ + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " encoding: utf-8", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Changes may cause incorrect behavior and will be lost if the code is", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " regenerated.", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "module", + "t": "ruby.meta.module.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "ruby.meta.module", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Azure", + "t": "ruby.meta.module.entity.name.type.other.inherited-class.first", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "ruby.punctuation.meta.module.entity.name.type.other.inherited-class.first.separator.inheritance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ARM", + "t": "ruby.meta.module.entity.name.type.other.inherited-class.second", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "ruby.punctuation.meta.module.entity.name.type.other.inherited-class.separator.inheritance.second", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Scheduler", + "t": "ruby.meta.module.entity.name.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " A service client - single point of access to the REST API.", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "ruby.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "class", + "t": "ruby.meta.keyword.control.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "ruby.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "SchedulerManagementClient", + "t": "ruby.meta.entity.name.type.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "ruby.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "ruby.meta.keyword.other.class.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "ruby.meta.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "MsRestAzure::AzureServiceClient", + "t": "ruby.meta.entity.other.inherited-class.class", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "include", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Azure", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "ruby.punctuation.other.separator", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ARM", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "ruby.punctuation.other.separator", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Scheduler", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "ruby.punctuation.other.separator", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Models", + "t": "ruby.other.variable.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "include", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "MsRestAzure", + "t": "ruby.other.variable.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " @return job_collections", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "attr_reader", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "ruby.punctuation.definition.other.constant.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "job_collections", + "t": "ruby.other.constant.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Creates initializes a new instance of the SchedulerManagementClient class.", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " @param credentials [MsRest::ServiceClientCredentials] credentials to authorize HTTP requests made by the service client.", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " @param base_url [String] the base URI of the service.", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " @param options [Array] filters to be applied to the HTTP requests.", + "t": "comment.line.number-sign.ruby", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "comment.ruby.punctuation.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.ruby.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "def", + "t": "ruby.meta.keyword.control.function.method.with-arguments.def", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "initialize", + "t": "ruby.meta.entity.name.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "ruby.punctuation.definition.meta.function.method.with-arguments.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "credentials", + "t": "ruby.meta.variable.function.method.with-arguments.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ", ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "base_url", + "t": "ruby.meta.variable.function.method.with-arguments.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.meta.keyword.operator.function.method.with-arguments.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nil", + "t": "ruby.meta.constant.function.method.with-arguments.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ", ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "options", + "t": "ruby.meta.variable.function.method.with-arguments.parameter", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.meta.keyword.operator.function.method.with-arguments.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "ruby.meta.function.method.with-arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nil", + "t": "ruby.meta.constant.function.method.with-arguments.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": ")", + "t": "ruby.punctuation.definition.meta.function.method.with-arguments.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "super", + "t": "ruby.keyword.control.pseudo-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "(", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "credentials", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "ruby.punctuation.separator.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " options", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "base_url", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " base_url ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "ruby.keyword.operator.logical", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "https://management.azure.com", + "t": "ruby.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fail", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ArgumentError", + "t": "ruby.other.variable.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "ruby.punctuation.separator.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "credentials is nil", + "t": "ruby.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " credentials", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "ruby.punctuation.separator.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "nil?", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fail", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ArgumentError", + "t": "ruby.other.variable.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "ruby.punctuation.separator.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "invalid type of credentials input parameter", + "t": "ruby.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "unless", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " credentials", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "ruby.punctuation.separator.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "is_a?", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "MsRest", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "ruby.punctuation.other.separator", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ServiceClientCredentials", + "t": "ruby.other.variable.constant", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "credentials", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " credentials", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "job_collections", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "JobCollections", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "ruby.punctuation.separator.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "(", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "self", + "t": "ruby.variable.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "jobs", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Jobs", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "ruby.punctuation.separator.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "new", + "t": "ruby.keyword.other.special-method", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "(", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "self", + "t": "ruby.variable.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "ruby.punctuation.function.section", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "api_version", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "2016-01-01", + "t": "ruby.string.quoted.single", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "'", + "t": "ruby.punctuation.definition.string.quoted.single.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "long_running_operation_retry_timeout", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "30", + "t": "ruby.constant.numeric.integer", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "@", + "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "generate_client_request_id", + "t": "ruby.other.variable.readwrite.instance", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "ruby.constant.language", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "MacOS", + "t": "ruby.class.support", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "ruby.punctuation.separator.method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "version ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">=", + "t": "ruby.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ":", + "t": "ruby.punctuation.definition.other.constant.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "mavericks", + "t": "ruby.other.constant.symbol", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " version ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "`", + "t": "ruby.punctuation.definition.string.begin.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "#{", + "t": "line.ruby.punctuation.meta.section.string.begin.interpolated.embedded", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "MAVERICKS_PKG_PATH", + "t": "line.ruby.meta.other.variable.constant.string.interpolated.embedded.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "}", + "t": "line.ruby.punctuation.meta.section.string.end.interpolated.embedded.source", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "/usr/bin/clang --version", + "t": "ruby.string.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "`", + "t": "ruby.punctuation.definition.string.end.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " version ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "`", + "t": "ruby.punctuation.definition.string.begin.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "/usr/bin/clang --version", + "t": "ruby.string.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "`", + "t": "ruby.punctuation.definition.string.end.interpolated", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " version ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "ruby.keyword.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " version", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[", + "t": "ruby.punctuation.section.begin.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/", + "t": "ruby.punctuation.definition.string.regexp.classic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "clang-", + "t": "ruby.string.regexp.classic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "(", + "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\d", + "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "+", + "t": "ruby.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\.\\d", + "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "+", + "t": "ruby.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\.\\d", + "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "+", + "t": "ruby.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "(", + "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "\\.\\d", + "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "+", + "t": "ruby.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": ")", + "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "?", + "t": "ruby.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": ")", + "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": "/", + "t": "ruby.punctuation.definition.string.regexp.classic", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + } + }, + { + "c": ",", + "t": "ruby.punctuation.separator.object", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "ruby.constant.numeric.integer", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "]", + "t": "ruby.punctuation.section.end.array", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "ruby.keyword.operator.logical", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "ruby.punctuation.definition.string.quoted.begin.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "0", + "t": "ruby.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "ruby.punctuation.definition.string.quoted.end.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " version ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "ruby.keyword.operator.comparison", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " latest_version", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "end", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "end", + "t": "ruby.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + } +] \ No newline at end of file diff --git a/extensions/rust/test/colorize-fixtures/test.rs b/extensions/rust/test/colorize-fixtures/test.rs new file mode 100644 index 00000000000..1f5a1873d33 --- /dev/null +++ b/extensions/rust/test/colorize-fixtures/test.rs @@ -0,0 +1,15 @@ +use std::io; + +fn main() { + println!("Guess the number!"); + + println!("Please input your guess."); + + let mut guess = String::new(); + + io::stdin().read_line(&mut guess) + .ok() + .expect("Failed to read line"); + + println!("You guessed: {}", guess); +} \ No newline at end of file diff --git a/extensions/rust/test/colorize-results/test_rs.json b/extensions/rust/test/colorize-results/test_rs.json new file mode 100644 index 00000000000..f98cd5401e4 --- /dev/null +++ b/extensions/rust/test/colorize-results/test_rs.json @@ -0,0 +1,574 @@ +[ + { + "c": "use", + "t": "keyword.other.rust", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " std", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "keyword.rust.operator.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "io;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fn", + "t": "keyword.other.rust.fn", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "main", + "t": "rust.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "() {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "println!", + "t": "rust.function.support.std", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Guess the number!\"", + "t": "rust.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "println!", + "t": "rust.function.support.std", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Please input your guess.\"", + "t": "rust.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "let", + "t": "keyword.other.rust", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "mut", + "t": "rust.storage.modifier.mut", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " guess ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.rust.operator.assignment", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "String", + "t": "rust.std.storage.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage" + } + }, + { + "c": "::", + "t": "keyword.rust.operator.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "new", + "t": "rust.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "();", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " io", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "::", + "t": "keyword.rust.operator.misc", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "stdin", + "t": "rust.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "().", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "read_line", + "t": "rust.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "&", + "t": "keyword.rust.operator.sigil", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "mut", + "t": "rust.storage.modifier.mut", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " guess)", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " .", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ok", + "t": "rust.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " .", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "expect", + "t": "rust.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Failed to read line\"", + "t": "rust.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ");", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "println!", + "t": "rust.function.support.std", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"You guessed: {}\"", + "t": "rust.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", guess);", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/shaderlab/test/colorize-fixtures/test.shader b/extensions/shaderlab/test/colorize-fixtures/test.shader new file mode 100644 index 00000000000..65c54531f4d --- /dev/null +++ b/extensions/shaderlab/test/colorize-fixtures/test.shader @@ -0,0 +1,15 @@ +Shader "Example/Diffuse Simple" { + SubShader { + Tags { "RenderType" = "Opaque" } + CGPROGRAM + #pragma surface surf Lambert + struct Input { + float4 color : COLOR; + }; + void surf (Input IN, inout SurfaceOutput o) { + o.Albedo = 1; + } + ENDCG + } + Fallback "Diffuse" + } \ No newline at end of file diff --git a/extensions/shaderlab/test/colorize-results/test_shader.json b/extensions/shaderlab/test/colorize-results/test_shader.json new file mode 100644 index 00000000000..162ff25c637 --- /dev/null +++ b/extensions/shaderlab/test/colorize-results/test_shader.json @@ -0,0 +1,563 @@ +[ + { + "c": "Shader", + "t": "support.class.shaderlab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Example/Diffuse Simple\"", + "t": "shaderlab.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "SubShader", + "t": "support.class.shaderlab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Tags", + "t": "support.class.shaderlab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " { ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"RenderType\"", + "t": "shaderlab.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " = ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Opaque\"", + "t": "shaderlab.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "CGPROGRAM", + "t": "support.class.shaderlab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " #pragma", + "t": "shaderlab.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " surface surf Lambert", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "struct", + "t": "shaderlab.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " Input {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "float4", + "t": "shaderlab.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " color : ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "COLOR", + "t": "support.shaderlab.variable.input", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " };", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "void", + "t": "shaderlab.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "surf", + "t": "support.shaderlab.meta.function-call.function.any-method", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " (", + "t": "shaderlab.meta.function-call", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Input IN, ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "inout", + "t": "shaderlab.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "SurfaceOutput", + "t": "support.shaderlab.variable.structure", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " o) {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " o.", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Albedo", + "t": "support.shaderlab.variable.output", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " = ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "shaderlab.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ENDCG", + "t": "support.class.shaderlab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Fallback", + "t": "support.shaderlab.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"Diffuse\"", + "t": "shaderlab.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/shellscript/test/colorize-fixtures/test.sh b/extensions/shellscript/test/colorize-fixtures/test.sh new file mode 100644 index 00000000000..f732ba657e5 --- /dev/null +++ b/extensions/shellscript/test/colorize-fixtures/test.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +if [[ "$OSTYPE" == "darwin"* ]]; then + realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; } + ROOT=$(dirname $(dirname $(realpath "$0"))) +else + ROOT=$(dirname $(dirname $(readlink -f $0))) +fi + +function code() { + cd $ROOT + + # Node modules + test -d node_modules || ./scripts/npm.sh install + + # Configuration + export NODE_ENV=development + + # Launch Code + if [[ "$OSTYPE" == "darwin"* ]]; then + exec ./.build/electron/Electron.app/Contents/MacOS/Electron . "$@" + else + exec ./.build/electron/electron . "$@" + fi +} + +code "$@" diff --git a/extensions/shellscript/test/colorize-results/test_sh.json b/extensions/shellscript/test/colorize-results/test_sh.json new file mode 100644 index 00000000000..9d8f75f872c --- /dev/null +++ b/extensions/shellscript/test/colorize-results/test_sh.json @@ -0,0 +1,1828 @@ +[ + { + "c": "#", + "t": "comment.line.number-sign.shell.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "!/usr/bin/env bash", + "t": "comment.line.number-sign.shell", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "if", + "t": "shell.meta.scope.if-block.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[[", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "OSTYPE", + "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.logical", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "darwin", + "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "*", + "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.glob", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]]", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "shell.meta.scope.if-block.keyword.operator.list", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "then", + "t": "shell.meta.scope.if-block.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.if-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "realpath", + "t": "shell.meta.scope.if-block.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "()", + "t": "shell.punctuation.definition.meta.scope.if-block.function.arguments", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "shell.punctuation.definition.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[[", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.variable.other.function.group.positional", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "1", + "t": "shell.meta.scope.if-block.logical-expression.variable.other.function.group.positional", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.logical.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " /", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.glob.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]]", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "&&", + "t": "shell.meta.scope.if-block.keyword.operator.list.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "echo", + "t": "shell.meta.scope.if-block.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.positional", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "1", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.positional", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "shell.meta.scope.if-block.keyword.operator.function.group.pipe", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "echo", + "t": "shell.meta.scope.if-block.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.normal.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "PWD", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.normal.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "/", + "t": "shell.meta.scope.if-block.string.quoted.double.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "${", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "1", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "#", + "t": "shell.meta.scope.if-block.keyword.string.quoted.double.variable.other.operator.function.group.bracket.expansion", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": ".", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "/", + "t": "shell.meta.scope.if-block.keyword.string.quoted.double.variable.other.operator.function.group.bracket.expansion", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "}", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ";", + "t": "shell.meta.scope.if-block.keyword.operator.list.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "}", + "t": "shell.punctuation.definition.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\tROOT=", + "t": "shell.meta.scope.if-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$(", + "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "dirname ", + "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$(", + "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "dirname ", + "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$(", + "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "realpath ", + "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.interpolated.dollar.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "0", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.interpolated.dollar.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")))", + "t": "shell.punctuation.definition.meta.scope.if-block.string.end.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "else", + "t": "shell.meta.scope.if-block.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "\tROOT=", + "t": "shell.meta.scope.if-block", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$(", + "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "dirname ", + "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$(", + "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "dirname ", + "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$(", + "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "readlink -f ", + "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.string.variable.other.interpolated.dollar.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "0", + "t": "shell.meta.scope.if-block.string.variable.other.interpolated.dollar.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ")))", + "t": "shell.punctuation.definition.meta.scope.if-block.string.end.interpolated.dollar", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "fi", + "t": "shell.meta.scope.if-block.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "function", + "t": "shell.meta.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "shell.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "code()", + "t": "shell.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "shell.punctuation.definition.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "cd", + "t": "shell.meta.scope.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.variable.other.normal.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ROOT", + "t": "shell.meta.scope.variable.other.normal.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "comment.shell.punctuation.meta.scope.function.group.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.shell.punctuation.definition.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Node modules", + "t": "comment.line.number-sign.shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "test", + "t": "shell.meta.scope.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " -d node_modules ", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "||", + "t": "shell.meta.scope.keyword.operator.function.group.pipe", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ./scripts/npm.sh install", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "comment.shell.punctuation.meta.scope.function.group.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.shell.punctuation.definition.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Configuration", + "t": "comment.line.number-sign.shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "export", + "t": "shell.meta.scope.function.group.storage.modifier", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + } + }, + { + "c": " NODE_ENV=development", + "t": "shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\t", + "t": "comment.shell.punctuation.meta.scope.function.group.whitespace.leading", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.shell.punctuation.definition.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Launch Code", + "t": "comment.line.number-sign.shell.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "shell.meta.scope.if-block.keyword.control.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "[[", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "OSTYPE", + "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "==", + "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.logical.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "darwin", + "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "*", + "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.glob.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "]]", + "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ";", + "t": "shell.meta.scope.if-block.keyword.operator.list.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "then", + "t": "shell.meta.scope.if-block.keyword.control.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "\t\t", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "exec", + "t": "shell.meta.scope.if-block.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ./.build/electron/Electron.app/Contents/MacOS/Electron ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "shell.meta.scope.if-block.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "@", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "else", + "t": "shell.meta.scope.if-block.keyword.control.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "\t\t", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "exec", + "t": "shell.meta.scope.if-block.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ./.build/electron/electron ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ".", + "t": "shell.meta.scope.if-block.function.group.support.builtin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "@", + "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\t", + "t": "shell.meta.scope.if-block.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "fi", + "t": "shell.meta.scope.if-block.keyword.control.function.group", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "}", + "t": "shell.punctuation.definition.meta.scope.function.group", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "code ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.string.quoted.double.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "$", + "t": "shell.punctuation.definition.string.quoted.double.variable.other.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "@", + "t": "shell.string.quoted.double.variable.other.special", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "shell.punctuation.definition.string.quoted.double.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + } +] \ No newline at end of file diff --git a/extensions/sql/test/colorize-fixtures/test.sql b/extensions/sql/test/colorize-fixtures/test.sql new file mode 100644 index 00000000000..033eeab921d --- /dev/null +++ b/extensions/sql/test/colorize-fixtures/test.sql @@ -0,0 +1,6 @@ +CREATE VIEW METRIC_STATS (ID, MONTH, TEMP_C, RAIN_C) AS +SELECT ID, +MONTH, +(TEMP_F - 32) * 5 /9, +RAIN_I * 0.3937 +FROM STATS; \ No newline at end of file diff --git a/extensions/sql/test/colorize-results/test_sql.json b/extensions/sql/test/colorize-results/test_sql.json new file mode 100644 index 00000000000..c3020c8eb9e --- /dev/null +++ b/extensions/sql/test/colorize-results/test_sql.json @@ -0,0 +1,332 @@ +[ + { + "c": "CREATE", + "t": "meta.create.sql.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "meta.create.sql", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "VIEW", + "t": "meta.create.sql.keyword.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "meta.create.sql", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "METRIC_STATS", + "t": "meta.create.sql.entity.name.function", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " (ID, MONTH, TEMP_C, RAIN_C) ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "AS", + "t": "sql.keyword.other.alias", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "SELECT", + "t": "sql.keyword.other.DML", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ID,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "MONTH,", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(TEMP_F ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "sql.keyword.operator.math", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "32", + "t": "sql.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ") ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "sql.keyword.operator.star", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "5", + "t": "sql.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "/", + "t": "sql.keyword.operator.math", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": "9", + "t": "sql.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ",", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RAIN_I ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "*", + "t": "sql.keyword.operator.star", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "sql.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": ".", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "3937", + "t": "sql.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "FROM", + "t": "sql.keyword.other.DML", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " STATS;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/swift/test/colorize-fixtures/test.swift b/extensions/swift/test/colorize-fixtures/test.swift new file mode 100644 index 00000000000..8b6ce3b50b9 --- /dev/null +++ b/extensions/swift/test/colorize-fixtures/test.swift @@ -0,0 +1,10 @@ +var teamScore = 0 +var greeting = "Hello!" +func hasAnyMatches(list: [Int], condition: (Int) -> Bool) -> Bool { + for item in list { + if condition(item) { + return true + } + } + return false +} \ No newline at end of file diff --git a/extensions/swift/test/colorize-results/test_swift.json b/extensions/swift/test/colorize-results/test_swift.json new file mode 100644 index 00000000000..58bfff7e09c --- /dev/null +++ b/extensions/swift/test/colorize-results/test_swift.json @@ -0,0 +1,464 @@ +[ + { + "c": "var", + "t": "keyword.declaration.swift", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " teamScore ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.swift.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "0", + "t": "swift.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": "var", + "t": "keyword.declaration.swift", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " greeting ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.swift.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "\"", + "t": "swift.string.quoted.double.punctuation.definition.begin", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "Hello!", + "t": "swift.string.quoted.double", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "\"", + "t": "swift.string.quoted.double.punctuation.definition.end", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "func", + "t": "swift.meta.function.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "swift.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "hasAnyMatches", + "t": "swift.meta.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "swift.punctuation.definition.begin.meta.function.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "list: [Int], condition: (Int", + "t": "swift.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "swift.punctuation.definition.end.meta.function.parameters", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "swift.meta.function", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "->", + "t": "swift.punctuation.meta.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "swift.meta.function.return-type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Bool) -> Bool ", + "t": "swift.meta.function.type.entity.name.return-type.class", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "for", + "t": "keyword.swift.statement", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " item ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "in", + "t": "keyword.swift.statement", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " list {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "if", + "t": "keyword.swift.statement", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " condition(item) {", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "keyword.swift.statement", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "true", + "t": "keyword.swift.expressions-and-types", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " }", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "return", + "t": "keyword.swift.statement", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "false", + "t": "keyword.swift.expressions-and-types", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + } +] \ No newline at end of file diff --git a/extensions/vb/test/colorize-fixtures/test.vb b/extensions/vb/test/colorize-fixtures/test.vb new file mode 100644 index 00000000000..6e6ac8a4507 --- /dev/null +++ b/extensions/vb/test/colorize-fixtures/test.vb @@ -0,0 +1,25 @@ +' Copyright (c) Microsoft Corporation. All rights reserved. + +Public Sub LongTask(ByVal Duration As Single, _ + ByVal MinimumInterval As Single) + Dim Threshold As Single + Dim Start As Single + Dim blnCancel As Boolean + + ' The Timer property of the DateAndTime object returns the seconds + ' and milliseconds that have passed since midnight. + Start = CSng(Timer) + Threshold = MinimumInterval + + Do While CSng(Timer)< (Start + Duration) + ' In a real application, some unit of work would + ' be done here each time through the loop. + If CSng(Timer)> (Start + Threshold) Then + RaiseEvent PercentDone( _ + Threshold / Duration, blnCancel) + ' Check to see if the operation was canceled. + If blnCancel Then Exit Sub + Threshold = Threshold + MinimumInterval + End If + Loop +End Sub \ No newline at end of file diff --git a/extensions/vb/test/colorize-results/test_vb.json b/extensions/vb/test/colorize-results/test_vb.json new file mode 100644 index 00000000000..ec0624c0dfc --- /dev/null +++ b/extensions/vb/test/colorize-results/test_vb.json @@ -0,0 +1,2180 @@ +[ + { + "c": "'", + "t": "comment.line.apostrophe.asp.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Copyright (c) Microsoft Corporation. All rights reserved.", + "t": "comment.line.apostrophe.asp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "Public Sub ", + "t": "asp.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": "LongTask", + "t": "asp.support.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ByVal", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " Duration ", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "As", + "t": "asp.meta.round-brackets.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Single", + "t": "asp.type.support.meta.round-brackets.vb", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " _", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "ByVal MinimumInterval ", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "As", + "t": "asp.meta.round-brackets.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Single", + "t": "asp.type.support.meta.round-brackets.vb", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Dim", + "t": "asp.storage.type.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "asp.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Threshold", + "t": "asp.variable.other.dim.bfeac", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "asp.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "As", + "t": "asp.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Single", + "t": "asp.type.support.vb", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Dim", + "t": "asp.storage.type.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "asp.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Start", + "t": "asp.variable.other.dim.bfeac", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "asp.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "As", + "t": "asp.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Single", + "t": "asp.type.support.vb", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Dim", + "t": "asp.storage.type.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + }, + { + "c": " ", + "t": "asp.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "blnCancel", + "t": "asp.variable.other.dim.bfeac", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "asp.variable.other.dim", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "As", + "t": "asp.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Boolean", + "t": "asp.type.support.vb", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "comment.line.apostrophe.asp.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " The Timer property of the DateAndTime object returns the seconds", + "t": "comment.line.apostrophe.asp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "comment.line.apostrophe.asp.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " and milliseconds that have passed since midnight.", + "t": "comment.line.apostrophe.asp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Start", + "t": "asp.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "CSng", + "t": "asp.support.function.vb", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Timer", + "t": "asp.support.function.meta.round-brackets.vb", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Threshold", + "t": "asp.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " MinimumInterval", + "t": "asp.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Do", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "While", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "CSng", + "t": "asp.support.function.vb", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Timer", + "t": "asp.support.function.meta.round-brackets.vb", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "<", + "t": "keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Start", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "meta.round-brackets.keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " Duration", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "comment.line.apostrophe.asp.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " In a real application, some unit of work would", + "t": "comment.line.apostrophe.asp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "comment.line.apostrophe.asp.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " be done here each time through the loop.", + "t": "comment.line.apostrophe.asp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "If", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "CSng", + "t": "asp.support.function.vb", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Timer", + "t": "asp.support.function.meta.round-brackets.vb", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ">", + "t": "keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Start", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "meta.round-brackets.keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " Threshold", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Then", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "RaiseEvent ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "PercentDone", + "t": "asp.support.function.entity.name", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "(", + "t": "asp.punctuation.meta.round-brackets.section.begin", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " _", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Threshold", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " /", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " Duration", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ",", + "t": "meta.round-brackets", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " blnCancel", + "t": "asp.meta.round-brackets.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": ")", + "t": "asp.punctuation.meta.round-brackets.section.end", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "'", + "t": "comment.line.apostrophe.asp.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " Check to see if the operation was canceled.", + "t": "comment.line.apostrophe.asp", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "If", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " blnCancel ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Then", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Exit Sub", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Threshold", + "t": "asp.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "=", + "t": "keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " Threshold", + "t": "asp.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "+", + "t": "keyword.operator.js", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + } + }, + { + "c": " MinimumInterval", + "t": "asp.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "End If", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": " ", + "t": "meta.leading-space.odd-tab.spaces", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space.spaces.even-tab", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "meta.leading-space", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "Loop", + "t": "asp.keyword.control", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + } + }, + { + "c": "End Sub", + "t": "asp.storage.type", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + } + } +] \ No newline at end of file diff --git a/extensions/yaml/test/colorize-fixtures/test.yaml b/extensions/yaml/test/colorize-fixtures/test.yaml new file mode 100644 index 00000000000..7083eed0cca --- /dev/null +++ b/extensions/yaml/test/colorize-fixtures/test.yaml @@ -0,0 +1,18 @@ +# sequencer protocols for Laser eye surgery +--- +- step: &id001 # defines anchor label &id001 + instrument: Lasik 2000 + pulseEnergy: 5.4 + spotSize: 1mm + +- step: *id001 # refers to the first step (with anchor &id001) +- step: *id001 + spotSize: 2mm +- step: *id002 +- {name: John Smith, age: 33} +- name: Mary Smith + age: 27 + men: [John Smith, Bill Jones] +women: + - Mary Smith + - Susan Williams \ No newline at end of file diff --git a/extensions/yaml/test/colorize-results/test_yaml.json b/extensions/yaml/test/colorize-results/test_yaml.json new file mode 100644 index 00000000000..1134f0cee14 --- /dev/null +++ b/extensions/yaml/test/colorize-results/test_yaml.json @@ -0,0 +1,794 @@ +[ + { + "c": "#", + "t": "comment.line.number-sign.yaml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " sequencer protocols for Laser eye surgery", + "t": "comment.line.number-sign.yaml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "-", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "--", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "- ", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "step", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "&", + "t": "yaml.punctuation.definition.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "id001 # defines anchor label &id001", + "t": "yaml.variable.other", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "instrument", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " Lasik 2000", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "pulseEnergy", + "t": "yaml.entity.name.tag.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.entity.name.tag.separator.key-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " 5.4", + "t": "yaml.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "spotSize", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " 1mm", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "- ", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "step", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " *id001 ", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "#", + "t": "comment.line.number-sign.yaml.punctuation.definition", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": " refers to the first step (with anchor &id001)", + "t": "comment.line.number-sign.yaml", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + } + }, + { + "c": "- ", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "step", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " *id001", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "spotSize", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " 2mm ", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "- ", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "step", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " *id002", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "-", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "{", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "name", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " John Smith", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": ", ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "age", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " 33", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "}", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "- ", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "name", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " Mary Smith", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "age", + "t": "yaml.entity.name.tag.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.entity.name.tag.separator.key-value.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " 27", + "t": "yaml.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "men", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": "[John Smith, Bill Jones]", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "women", + "t": "yaml.string.unquoted.entity.name.tag", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": ":", + "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " Mary Smith", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token", + "light_plus": ".vs .token", + "dark_vs": ".vs-dark .token", + "light_vs": ".vs .token", + "hc_black": ".hc-black .token" + } + }, + { + "c": "-", + "t": "yaml.punctuation.definition.string.unquoted.entry", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + }, + { + "c": " Susan Williams", + "t": "yaml.string.unquoted", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + } + } +] \ No newline at end of file From 39038672c0f336bd602513d439ee545b11f2f3f9 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 17:52:35 +0200 Subject: [PATCH 037/117] debt - move reference search registry to modes --- src/vs/editor/common/modes.ts | 5 +++++ .../contrib/referenceSearch/browser/referenceSearch.ts | 8 ++++---- .../contrib/referenceSearch/common/referenceSearch.ts | 7 ++----- src/vs/languages/typescript/common/languageFeatures.ts | 3 +-- src/vs/workbench/api/node/extHostLanguageFeatures.ts | 3 +-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/vs/editor/common/modes.ts b/src/vs/editor/common/modes.ts index 4e4c8aad6fe..fc27b58e63a 100644 --- a/src/vs/editor/common/modes.ts +++ b/src/vs/editor/common/modes.ts @@ -12,6 +12,7 @@ import {IFilter} from 'vs/base/common/filters'; import {IMarker} from 'vs/platform/markers/common/markers'; import * as editorCommon from 'vs/editor/common/editorCommon'; import {ModeTransition} from 'vs/editor/common/core/modeTransition'; +import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; export interface ITokenizationResult { type?:string; @@ -756,3 +757,7 @@ export interface IRichEditSupport { */ brackets?: IRichEditBrackets; } + +// --- feature registries ------ + +export const ReferenceSearchRegistry = new LanguageFeatureRegistry('referenceSupport'); diff --git a/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts b/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts index f19b5054cfd..fbca5cc4bc5 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.ts @@ -25,11 +25,11 @@ import {EditorAction} from 'vs/editor/common/editorAction'; import {Behaviour} from 'vs/editor/common/editorActionEnablement'; import * as editorCommon from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; -import {IReference} from 'vs/editor/common/modes'; +import {IReference, ReferenceSearchRegistry} from 'vs/editor/common/modes'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; import {EditorBrowserRegistry} from 'vs/editor/browser/editorBrowserExtensions'; import {Events, IPeekViewService, getOuterEditor} from 'vs/editor/contrib/zoneWidget/browser/peekViewWidget'; -import {ReferenceRegistry, findReferences} from '../common/referenceSearch'; +import {findReferences} from '../common/referenceSearch'; import {EventType, ReferencesModel} from './referenceSearchModel'; import {ReferenceWidget} from './referenceSearchWidget'; @@ -267,7 +267,7 @@ export class ReferenceAction extends EditorAction { } public isSupported():boolean { - return ReferenceRegistry.has(this.editor.getModel()) && super.isSupported(); + return ReferenceSearchRegistry.has(this.editor.getModel()) && super.isSupported(); } public getEnablementState():boolean { @@ -280,7 +280,7 @@ export class ReferenceAction extends EditorAction { let context = model.getLineContext(position.lineNumber); let offset = position.column - 1; - return ReferenceRegistry.all(model).some(support => { + return ReferenceSearchRegistry.all(model).some(support => { return support.canFindReferences(context, offset); }); } diff --git a/src/vs/editor/contrib/referenceSearch/common/referenceSearch.ts b/src/vs/editor/contrib/referenceSearch/common/referenceSearch.ts index 7eb21d1de37..c43b7f9117a 100644 --- a/src/vs/editor/contrib/referenceSearch/common/referenceSearch.ts +++ b/src/vs/editor/contrib/referenceSearch/common/referenceSearch.ts @@ -9,15 +9,12 @@ import {onUnexpectedError} from 'vs/base/common/errors'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel, IPosition} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IReference, IReferenceSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; - -export const ReferenceRegistry = new LanguageFeatureRegistry('referenceSupport'); +import {IReference, ReferenceSearchRegistry} from 'vs/editor/common/modes'; export function findReferences(model: IModel, position: IPosition): TPromise { // collect references from all providers - const promises = ReferenceRegistry.ordered(model).map(provider => { + const promises = ReferenceSearchRegistry.ordered(model).map(provider => { return provider.findReferences(model.getAssociatedResource(), position, true).then(result => { if (Array.isArray(result)) { return result; diff --git a/src/vs/languages/typescript/common/languageFeatures.ts b/src/vs/languages/typescript/common/languageFeatures.ts index d877a51294e..61c22f8cfc9 100644 --- a/src/vs/languages/typescript/common/languageFeatures.ts +++ b/src/vs/languages/typescript/common/languageFeatures.ts @@ -17,7 +17,6 @@ import {SuggestRegistry} from 'vs/editor/contrib/suggest/common/suggest'; import {ParameterHintsRegistry} from 'vs/editor/contrib/parameterHints/common/parameterHints'; import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; import {ExtraInfoRegistry} from 'vs/editor/contrib/hover/common/hover'; -import {ReferenceRegistry} from 'vs/editor/contrib/referenceSearch/common/referenceSearch'; import {DeclarationRegistry} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; import {OutlineRegistry} from 'vs/editor/contrib/quickOpen/common/quickOpen'; import {FormatRegistry, FormatOnTypeRegistry} from 'vs/editor/contrib/format/common/format'; @@ -33,7 +32,7 @@ export function register(modelService: IModelService, markerService: IMarkerServ disposables.push(ExtraInfoRegistry.register(selector, new QuickInfoAdapter(modelService, worker))); disposables.push(OccurrencesRegistry.register(selector, new OccurrencesAdapter(modelService, worker))); disposables.push(DeclarationRegistry.register(selector, new DeclarationAdapter(modelService, worker))); - disposables.push(ReferenceRegistry.register(selector, new ReferenceAdapter(modelService, worker))); + disposables.push(modes.ReferenceSearchRegistry.register(selector, new ReferenceAdapter(modelService, worker))); disposables.push(OutlineRegistry.register(selector, new OutlineAdapter(modelService, worker))); disposables.push(FormatRegistry.register(selector, new FormatAdapter(modelService, worker))); disposables.push(FormatOnTypeRegistry.register(selector, new FormatAdapter(modelService, worker))); diff --git a/src/vs/workbench/api/node/extHostLanguageFeatures.ts b/src/vs/workbench/api/node/extHostLanguageFeatures.ts index 3ff734f3d51..7a656403090 100644 --- a/src/vs/workbench/api/node/extHostLanguageFeatures.ts +++ b/src/vs/workbench/api/node/extHostLanguageFeatures.ts @@ -19,7 +19,6 @@ import {ExtHostDiagnostics} from 'vs/workbench/api/node/extHostDiagnostics'; import {DeclarationRegistry} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; import {ExtraInfoRegistry} from 'vs/editor/contrib/hover/common/hover'; import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; -import {ReferenceRegistry} from 'vs/editor/contrib/referenceSearch/common/referenceSearch'; import {QuickFixRegistry} from 'vs/editor/contrib/quickFix/common/quickFix'; import {OutlineRegistry, IOutlineEntry, IOutlineSupport} from 'vs/editor/contrib/quickOpen/common/quickOpen'; import {NavigateTypesSupportRegistry, INavigateTypesSupport, ITypeBearing} from 'vs/workbench/parts/search/common/search'; @@ -942,7 +941,7 @@ export class MainThreadLanguageFeatures { // --- references $registerReferenceSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = ReferenceRegistry.register(selector, { + this._registrations[handle] = modes.ReferenceSearchRegistry.register(selector, { canFindReferences() { return true; }, From 37be9a631d135225ac87dcb3460dc0db57d48234 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 17:54:47 +0200 Subject: [PATCH 038/117] debt - move rename registry to modes --- src/vs/editor/common/modes.ts | 2 ++ src/vs/editor/contrib/rename/browser/rename2.ts | 3 ++- src/vs/editor/contrib/rename/common/rename.ts | 5 +---- src/vs/workbench/api/node/extHostLanguageFeatures.ts | 3 +-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/vs/editor/common/modes.ts b/src/vs/editor/common/modes.ts index fc27b58e63a..634ac25171f 100644 --- a/src/vs/editor/common/modes.ts +++ b/src/vs/editor/common/modes.ts @@ -761,3 +761,5 @@ export interface IRichEditSupport { // --- feature registries ------ export const ReferenceSearchRegistry = new LanguageFeatureRegistry('referenceSupport'); + +export const RenameRegistry = new LanguageFeatureRegistry('renameSupport'); diff --git a/src/vs/editor/contrib/rename/browser/rename2.ts b/src/vs/editor/contrib/rename/browser/rename2.ts index fe09fba49ab..f21aef53bf7 100644 --- a/src/vs/editor/contrib/rename/browser/rename2.ts +++ b/src/vs/editor/contrib/rename/browser/rename2.ts @@ -20,9 +20,10 @@ import {Behaviour} from 'vs/editor/common/editorActionEnablement'; import {IEditorActionDescriptorData, IRange} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; import {isLineToken} from 'vs/editor/common/modes/supports'; +import {RenameRegistry} from 'vs/editor/common/modes'; import {BulkEdit, createBulkEdit} from 'vs/editor/common/services/bulkEdit'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; -import {RenameRegistry, rename} from '../common/rename'; +import {rename} from '../common/rename'; import RenameInputField from './renameInputField'; // --- register actions and commands diff --git a/src/vs/editor/contrib/rename/common/rename.ts b/src/vs/editor/contrib/rename/common/rename.ts index 2931802ea2e..eb767c314d3 100644 --- a/src/vs/editor/contrib/rename/common/rename.ts +++ b/src/vs/editor/contrib/rename/common/rename.ts @@ -11,10 +11,7 @@ import {illegalArgument} from 'vs/base/common/errors'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel, IPosition} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IRenameResult, IRenameSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; - -export const RenameRegistry = new LanguageFeatureRegistry('renameSupport'); +import {IRenameResult, RenameRegistry} from 'vs/editor/common/modes'; export function rename(model: IModel, position: IPosition, newName: string): TPromise { diff --git a/src/vs/workbench/api/node/extHostLanguageFeatures.ts b/src/vs/workbench/api/node/extHostLanguageFeatures.ts index 7a656403090..79cff0aa66c 100644 --- a/src/vs/workbench/api/node/extHostLanguageFeatures.ts +++ b/src/vs/workbench/api/node/extHostLanguageFeatures.ts @@ -22,7 +22,6 @@ import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/word import {QuickFixRegistry} from 'vs/editor/contrib/quickFix/common/quickFix'; import {OutlineRegistry, IOutlineEntry, IOutlineSupport} from 'vs/editor/contrib/quickOpen/common/quickOpen'; import {NavigateTypesSupportRegistry, INavigateTypesSupport, ITypeBearing} from 'vs/workbench/parts/search/common/search'; -import {RenameRegistry} from 'vs/editor/contrib/rename/common/rename'; import {FormatRegistry, FormatOnTypeRegistry} from 'vs/editor/contrib/format/common/format'; import {CodeLensRegistry} from 'vs/editor/contrib/codelens/common/codelens'; import {ParameterHintsRegistry} from 'vs/editor/contrib/parameterHints/common/parameterHints'; @@ -1012,7 +1011,7 @@ export class MainThreadLanguageFeatures { // --- rename $registerRenameSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = RenameRegistry.register(selector, { + this._registrations[handle] = modes.RenameRegistry.register(selector, { rename: (resource: URI, position: IPosition, newName: string): TPromise => { return this._proxy.$rename(handle, resource, position, newName); } From 4431fb83c19243969e34b285895008529b3a81f4 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 11 Apr 2016 17:58:56 +0200 Subject: [PATCH 039/117] debt - move suggest registry to modes --- src/vs/editor/common/modes.ts | 2 ++ src/vs/editor/contrib/suggest/browser/suggest.ts | 4 ++-- src/vs/editor/contrib/suggest/browser/suggestModel.ts | 4 ++-- src/vs/editor/contrib/suggest/browser/suggestWidget.ts | 3 ++- src/vs/editor/contrib/suggest/common/suggest.ts | 5 +---- src/vs/languages/typescript/common/languageFeatures.ts | 3 +-- src/vs/workbench/api/node/extHostLanguageFeatures.ts | 3 +-- 7 files changed, 11 insertions(+), 13 deletions(-) diff --git a/src/vs/editor/common/modes.ts b/src/vs/editor/common/modes.ts index 634ac25171f..60c32eb4640 100644 --- a/src/vs/editor/common/modes.ts +++ b/src/vs/editor/common/modes.ts @@ -763,3 +763,5 @@ export interface IRichEditSupport { export const ReferenceSearchRegistry = new LanguageFeatureRegistry('referenceSupport'); export const RenameRegistry = new LanguageFeatureRegistry('renameSupport'); + +export var SuggestRegistry = new LanguageFeatureRegistry('suggestSupport'); diff --git a/src/vs/editor/contrib/suggest/browser/suggest.ts b/src/vs/editor/contrib/suggest/browser/suggest.ts index 7196b07b29c..8424eccdd3a 100644 --- a/src/vs/editor/contrib/suggest/browser/suggest.ts +++ b/src/vs/editor/contrib/suggest/browser/suggest.ts @@ -14,11 +14,11 @@ import {IKeybindingContextKey, IKeybindingService, KbExpr} from 'vs/platform/key import {EditorAction} from 'vs/editor/common/editorAction'; import {EventType, ICommonCodeEditor, IEditorActionDescriptorData, IEditorContribution, IModeSupportChangedEvent} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; -import {ISuggestSupport} from 'vs/editor/common/modes'; +import {ISuggestSupport, SuggestRegistry} from 'vs/editor/common/modes'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; import {EditorBrowserRegistry} from 'vs/editor/browser/editorBrowserExtensions'; import {getSnippetController} from 'vs/editor/contrib/snippet/common/snippet'; -import {ACCEPT_SELECTED_SUGGESTION_CMD, CONTEXT_SUGGEST_WIDGET_VISIBLE, SuggestRegistry} from 'vs/editor/contrib/suggest/common/suggest'; +import {ACCEPT_SELECTED_SUGGESTION_CMD, CONTEXT_SUGGEST_WIDGET_VISIBLE} from 'vs/editor/contrib/suggest/common/suggest'; import {KeybindingsRegistry} from 'vs/platform/keybinding/common/keybindingsRegistry'; import {withCodeEditorFromCommandHandler} from 'vs/editor/common/config/config'; import {SuggestModel} from './suggestModel'; diff --git a/src/vs/editor/contrib/suggest/browser/suggestModel.ts b/src/vs/editor/contrib/suggest/browser/suggestModel.ts index 2f172856918..8d409090d28 100644 --- a/src/vs/editor/contrib/suggest/browser/suggestModel.ts +++ b/src/vs/editor/contrib/suggest/browser/suggestModel.ts @@ -10,9 +10,9 @@ import {IDisposable, dispose} from 'vs/base/common/lifecycle'; import {startsWith} from 'vs/base/common/strings'; import {TPromise} from 'vs/base/common/winjs.base'; import {EventType, ICommonCodeEditor, ICursorSelectionChangedEvent, IPosition} from 'vs/editor/common/editorCommon'; -import {ISuggestSupport, ISuggestion} from 'vs/editor/common/modes'; +import {ISuggestSupport, ISuggestion, SuggestRegistry} from 'vs/editor/common/modes'; import {CodeSnippet} from 'vs/editor/contrib/snippet/common/snippet'; -import {ISuggestResult2, SuggestRegistry, suggest} from '../common/suggest'; +import {ISuggestResult2, suggest} from '../common/suggest'; import {CompletionModel} from './completionModel'; export interface ICancelEvent { diff --git a/src/vs/editor/contrib/suggest/browser/suggestWidget.ts b/src/vs/editor/contrib/suggest/browser/suggestWidget.ts index 6dd46573943..39c19db482a 100644 --- a/src/vs/editor/contrib/suggest/browser/suggestWidget.ts +++ b/src/vs/editor/contrib/suggest/browser/suggestWidget.ts @@ -22,8 +22,9 @@ import {IInstantiationService} from 'vs/platform/instantiation/common/instantiat import {IKeybindingContextKey, IKeybindingService} from 'vs/platform/keybinding/common/keybindingService'; import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {EventType, IModeSupportChangedEvent} from 'vs/editor/common/editorCommon'; +import {SuggestRegistry} from 'vs/editor/common/modes'; import {ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition} from 'vs/editor/browser/editorBrowser'; -import {CONTEXT_SUGGESTION_SUPPORTS_ACCEPT_ON_KEY, SuggestRegistry} from '../common/suggest'; +import {CONTEXT_SUGGESTION_SUPPORTS_ACCEPT_ON_KEY} from '../common/suggest'; import {CompletionItem, CompletionModel} from './completionModel'; import {ICancelEvent, ISuggestEvent, ITriggerEvent, SuggestModel} from './suggestModel'; import {alert} from 'vs/base/browser/ui/aria/aria'; diff --git a/src/vs/editor/contrib/suggest/common/suggest.ts b/src/vs/editor/contrib/suggest/common/suggest.ts index 930caee104e..40fe2967317 100644 --- a/src/vs/editor/contrib/suggest/common/suggest.ts +++ b/src/vs/editor/contrib/suggest/common/suggest.ts @@ -10,16 +10,13 @@ import {illegalArgument, onUnexpectedError} from 'vs/base/common/errors'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel, IPosition} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {ISuggestResult, ISuggestSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; +import {ISuggestResult, ISuggestSupport, SuggestRegistry} from 'vs/editor/common/modes'; import {SnippetsRegistry} from 'vs/editor/common/modes/supports'; export var CONTEXT_SUGGEST_WIDGET_VISIBLE = 'suggestWidgetVisible'; export var CONTEXT_SUGGESTION_SUPPORTS_ACCEPT_ON_KEY = 'suggestionSupportsAcceptOnKey'; export var ACCEPT_SELECTED_SUGGESTION_CMD = 'acceptSelectedSuggestion'; -export var SuggestRegistry = new LanguageFeatureRegistry('suggestSupport'); - export interface ISuggestResult2 extends ISuggestResult { support?: ISuggestSupport; } diff --git a/src/vs/languages/typescript/common/languageFeatures.ts b/src/vs/languages/typescript/common/languageFeatures.ts index 61c22f8cfc9..b635f7255c3 100644 --- a/src/vs/languages/typescript/common/languageFeatures.ts +++ b/src/vs/languages/typescript/common/languageFeatures.ts @@ -13,7 +13,6 @@ import * as modes from 'vs/editor/common/modes'; import matches from 'vs/editor/common/modes/languageSelector'; import {IMarkerService, IMarkerData} from 'vs/platform/markers/common/markers'; import {IModelService} from 'vs/editor/common/services/modelService'; -import {SuggestRegistry} from 'vs/editor/contrib/suggest/common/suggest'; import {ParameterHintsRegistry} from 'vs/editor/contrib/parameterHints/common/parameterHints'; import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; import {ExtraInfoRegistry} from 'vs/editor/contrib/hover/common/hover'; @@ -27,7 +26,7 @@ export function register(modelService: IModelService, markerService: IMarkerServ selector: string, defaults:LanguageServiceDefaults, worker: (first: URI, ...more: URI[]) => TPromise): lifecycle.IDisposable { const disposables: lifecycle.IDisposable[] = []; - disposables.push(SuggestRegistry.register(selector, new SuggestAdapter(modelService, worker))); + disposables.push(modes.SuggestRegistry.register(selector, new SuggestAdapter(modelService, worker))); disposables.push(ParameterHintsRegistry.register(selector, new ParameterHintsAdapter(modelService, worker))); disposables.push(ExtraInfoRegistry.register(selector, new QuickInfoAdapter(modelService, worker))); disposables.push(OccurrencesRegistry.register(selector, new OccurrencesAdapter(modelService, worker))); diff --git a/src/vs/workbench/api/node/extHostLanguageFeatures.ts b/src/vs/workbench/api/node/extHostLanguageFeatures.ts index 79cff0aa66c..4e49af33477 100644 --- a/src/vs/workbench/api/node/extHostLanguageFeatures.ts +++ b/src/vs/workbench/api/node/extHostLanguageFeatures.ts @@ -25,7 +25,6 @@ import {NavigateTypesSupportRegistry, INavigateTypesSupport, ITypeBearing} from import {FormatRegistry, FormatOnTypeRegistry} from 'vs/editor/contrib/format/common/format'; import {CodeLensRegistry} from 'vs/editor/contrib/codelens/common/codelens'; import {ParameterHintsRegistry} from 'vs/editor/contrib/parameterHints/common/parameterHints'; -import {SuggestRegistry} from 'vs/editor/contrib/suggest/common/suggest'; import {asWinJsPromise, ShallowCancelThenPromise} from 'vs/base/common/async'; // --- adapter @@ -1022,7 +1021,7 @@ export class MainThreadLanguageFeatures { // --- suggest $registerSuggestSupport(handle: number, selector: vscode.DocumentSelector, triggerCharacters: string[]): TPromise { - this._registrations[handle] = SuggestRegistry.register(selector, { + this._registrations[handle] = modes.SuggestRegistry.register(selector, { suggest: (resource: URI, position: IPosition, triggerCharacter?: string): TPromise => { return this._proxy.$suggest(handle, resource, position); }, From 3a486b145e529486c0681226953f1aa0800009c1 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 21:14:30 +0200 Subject: [PATCH 040/117] colorize tests: add color, normalize type --- extensions/vscode-colorize-tests/src/colorizer.test.ts | 4 +--- .../test/electron-browser/themes.test.contribution.ts | 10 +++++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/extensions/vscode-colorize-tests/src/colorizer.test.ts b/extensions/vscode-colorize-tests/src/colorizer.test.ts index d337bcdde9a..b827742e6a6 100644 --- a/extensions/vscode-colorize-tests/src/colorizer.test.ts +++ b/extensions/vscode-colorize-tests/src/colorizer.test.ts @@ -25,9 +25,7 @@ function assertUnchangedTokens(testFixurePath:string, done) { try { assert.deepEqual(data, previousData); } catch (e) { - fs.writeFileSync(resultPath, JSON.stringify(data, null, '\t'), { mode: 'w' }); - let errorResultPath = join(resultsFolderPath, fileName.replace('.', '_') + '.previous.json'); - fs.writeFileSync(errorResultPath, JSON.stringify(previousData, null, '\t'), { mode: 'w' }); + fs.writeFileSync(resultPath, JSON.stringify(data, null, '\t'), { flag: 'w' }); throw e; } } else { diff --git a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts index a5acde557e1..2bad257d360 100644 --- a/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts +++ b/src/vs/workbench/parts/themes/test/electron-browser/themes.test.contribution.ts @@ -57,9 +57,13 @@ class Snapper { return element; } + private normalizeType(type: string) : string { + return type.split('.').sort().join('.'); + } + private getStyle(testNode: Element, scope: string) : string { - testNode.className = 'token ' + scope; + testNode.className = 'token ' + scope.replace(/\./g, ' '); let cssStyles = window.getComputedStyle(testNode); if (cssStyles) { @@ -110,7 +114,7 @@ class Snapper { let testNode = this.getTestNode(themeId); let themeName = getThemeName(themeId); data.forEach(entry => { - entry.r[themeName] = this.getMatchedCSSRule(testNode, entry.t); + entry.r[themeName] = this.getMatchedCSSRule(testNode, entry.t) + ' ' + this.getStyle(testNode, entry.t) }); } }); @@ -133,7 +137,7 @@ class Snapper { let content = model.getValueInRange({ startLineNumber: lineNumber, endLineNumber: lineNumber, startColumn: tokenInfo.startColumn, endColumn: tokenInfo.endColumn}); result.push({ c: content, - t: tokenInfo.token.type, + t: this.normalizeType(tokenInfo.token.type), r: {} }); } From 320a247a6fe87d582e9604ef0a6848647ce8f536 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 21:16:21 +0200 Subject: [PATCH 041/117] fixes #499: syntax highlighting broken when divide symbol is not separated using space --- .../syntaxes/CoffeeScript.tmLanguage | 2 +- .../test/colorize-fixtures/test-regex.coffee | 11 + .../colorize-results/test-regex_coffee.json | 607 +++++++ .../test/colorize-results/test_coffee.json | 1556 ++++++++--------- 4 files changed, 1397 insertions(+), 779 deletions(-) create mode 100644 extensions/coffeescript/test/colorize-fixtures/test-regex.coffee create mode 100644 extensions/coffeescript/test/colorize-results/test-regex_coffee.json diff --git a/extensions/coffeescript/syntaxes/CoffeeScript.tmLanguage b/extensions/coffeescript/syntaxes/CoffeeScript.tmLanguage index 83cfe385045..c523a978716 100644 --- a/extensions/coffeescript/syntaxes/CoffeeScript.tmLanguage +++ b/extensions/coffeescript/syntaxes/CoffeeScript.tmLanguage @@ -326,7 +326,7 @@
begin - /(?![\s=/*+{}?]) + /(?![\s=/*+{}?])(?=.*/[igmy]{0,4}) beginCaptures 0 diff --git a/extensions/coffeescript/test/colorize-fixtures/test-regex.coffee b/extensions/coffeescript/test/colorize-fixtures/test-regex.coffee new file mode 100644 index 00000000000..75b260a9de6 --- /dev/null +++ b/extensions/coffeescript/test/colorize-fixtures/test-regex.coffee @@ -0,0 +1,11 @@ +regex = /Hello (\d+) #{user}/g +2 / 3 +2/3 +name="hello" +test=/// #{name} + +fancyRegExp = /// + (\d+) # numbers + (\w*) # letters + $ # the end +/// \ No newline at end of file diff --git a/extensions/coffeescript/test/colorize-results/test-regex_coffee.json b/extensions/coffeescript/test/colorize-results/test-regex_coffee.json new file mode 100644 index 00000000000..2b922c6d94f --- /dev/null +++ b/extensions/coffeescript/test/colorize-results/test-regex_coffee.json @@ -0,0 +1,607 @@ +[ + { + "c": "regex", + "t": "assignment.coffee.other.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "/", + "t": "begin.coffee.definition.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "Hello ", + "t": "coffee.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "(", + "t": "coffee.definition.group.meta.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "\\d", + "t": "character.character-class.coffee.constant.group.meta.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "+", + "t": "coffee.group.keyword.meta.operator.quantifier.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": ")", + "t": "coffee.definition.group.meta.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": " #{user}", + "t": "coffee.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "/", + "t": "coffee.definition.end.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "g", + "t": "coffee.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "2", + "t": "coffee.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "/", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "3", + "t": "coffee.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + } + }, + { + "c": "2", + "t": "coffee.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + } + }, + { + "c": "/", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": "3", + "t": "coffee.constant.numeric", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + } + }, + { + "c": "name", + "t": "assignment.coffee.other.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": "\"", + "t": "begin.coffee.definition.double.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + } + }, + { + "c": "hello", + "t": "coffee.double.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + } + }, + { + "c": "\"", + "t": "coffee.definition.double.end.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + } + }, + { + "c": "test", + "t": "assignment.coffee.other.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "=", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": "///", + "t": "begin.block.coffee.definition.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": " ", + "t": "block.coffee.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "#{", + "t": "begin.block.coffee.embedded.line.meta.punctuation.regexp.section.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "name", + "t": "block.coffee.embedded.line.meta.regexp.source.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "}", + "t": "block.coffee.embedded.end.line.meta.punctuation.regexp.section.source.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "fancyRegExp = ", + "t": "block.coffee.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "///", + "t": "block.coffee.definition.end.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "(", + "t": "brace.coffee.meta.round", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "\\d", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "+", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": ")", + "t": "brace.coffee.meta.round", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "#", + "t": "coffee.comment.definition.line.number-sign.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + } + }, + { + "c": " numbers", + "t": "coffee.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "(", + "t": "brace.coffee.meta.round", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "\\w", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "*", + "t": "coffee.keyword.operator", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + } + }, + { + "c": ")", + "t": "brace.coffee.meta.round", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "#", + "t": "coffee.comment.definition.line.number-sign.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + } + }, + { + "c": " letters", + "t": "coffee.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + } + }, + { + "c": "\t$\t\t", + "t": "", + "r": { + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" + } + }, + { + "c": "#", + "t": "coffee.comment.definition.line.number-sign.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + } + }, + { + "c": " the end", + "t": "coffee.comment.line.number-sign", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + } + }, + { + "c": "///", + "t": "begin.block.coffee.definition.punctuation.regexp.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + } + } +] \ No newline at end of file diff --git a/extensions/coffeescript/test/colorize-results/test_coffee.json b/extensions/coffeescript/test/colorize-results/test_coffee.json index 2bca84f410f..c713f89b710 100644 --- a/extensions/coffeescript/test/colorize-results/test_coffee.json +++ b/extensions/coffeescript/test/colorize-results/test_coffee.json @@ -1,1498 +1,1498 @@ [ { "c": "\"\"\"", - "t": "string.quoted.double.heredoc.coffee.punctuation.definition.begin", + "t": "begin.coffee.definition.double.heredoc.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "A CoffeeScript sample.", - "t": "string.quoted.double.heredoc.coffee", + "t": "coffee.double.heredoc.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "\"\"\"", - "t": "string.quoted.double.heredoc.coffee.punctuation.definition.end", + "t": "coffee.definition.double.end.heredoc.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "class", - "t": "coffee.meta.class.storage.type", + "t": "class.coffee.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" } }, { "c": " ", - "t": "coffee.meta.class", + "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "Vehicle", - "t": "coffee.meta.class.type.entity.name", + "t": "class.coffee.entity.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "constructor", - "t": "coffee.meta.entity.name.function", + "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ":", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "(", - "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "@name", - "t": "coffee.meta.function.inline.variable.parameter", + "t": "coffee.function.inline.meta.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ")", - "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", - "t": "coffee.meta.function.inline", + "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=>", - "t": "coffee.meta.storage.type.function.inline", + "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "drive", - "t": "coffee.meta.entity.name.function", + "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ":", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "()", - "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", - "t": "coffee.meta.function.inline", + "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=>", - "t": "coffee.meta.storage.type.function.inline", + "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" } }, { "c": " alert ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.quoted.double.coffee.punctuation.definition.begin", + "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "Drive ", - "t": "string.quoted.double.coffee", + "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "#{", - "t": "string.quoted.double.coffee.punctuation.begin.meta.embedded.line.section", + "t": "begin.coffee.double.embedded.line.meta.punctuation.quoted.section.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "@", - "t": "string.quoted.double.coffee.punctuation.definition.meta.variable.embedded.line.source.other.readwrite.instance", + "t": "coffee.definition.double.embedded.instance.line.meta.other.punctuation.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "name", - "t": "string.quoted.double.coffee.meta.variable.embedded.line.source.other.readwrite.instance", + "t": "coffee.double.embedded.instance.line.meta.other.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "}", - "t": "string.quoted.double.coffee.punctuation.end.meta.embedded.line.section.source", + "t": "coffee.double.embedded.end.line.meta.punctuation.quoted.section.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.quoted.double.coffee.punctuation.definition.end", + "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "class", - "t": "coffee.meta.class.storage.type", + "t": "class.coffee.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" } }, { "c": " ", - "t": "coffee.meta.class", + "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "Car", - "t": "coffee.meta.class.type.entity.name", + "t": "class.coffee.entity.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", - "t": "coffee.meta.class", + "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "extends", - "t": "coffee.meta.class.keyword.control.inheritance", + "t": "class.coffee.control.inheritance.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": " ", - "t": "coffee.meta.class", + "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "Vehicle", - "t": "coffee.meta.class.entity.other.inherited-class", + "t": "class.coffee.entity.inherited-class.meta.other", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "drive", - "t": "coffee.meta.entity.name.function", + "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ":", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "()", - "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", - "t": "coffee.meta.function.inline", + "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=>", - "t": "coffee.meta.storage.type.function.inline", + "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" } }, { "c": " alert ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.quoted.double.coffee.punctuation.definition.begin", + "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "Driving ", - "t": "string.quoted.double.coffee", + "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "#{", - "t": "string.quoted.double.coffee.punctuation.begin.meta.embedded.line.section", + "t": "begin.coffee.double.embedded.line.meta.punctuation.quoted.section.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "@", - "t": "string.quoted.double.coffee.punctuation.definition.meta.variable.embedded.line.source.other.readwrite.instance", + "t": "coffee.definition.double.embedded.instance.line.meta.other.punctuation.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "name", - "t": "string.quoted.double.coffee.meta.variable.embedded.line.source.other.readwrite.instance", + "t": "coffee.double.embedded.instance.line.meta.other.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "}", - "t": "string.quoted.double.coffee.punctuation.end.meta.embedded.line.section.source", + "t": "coffee.double.embedded.end.line.meta.punctuation.quoted.section.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.quoted.double.coffee.punctuation.definition.end", + "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "c", - "t": "coffee.variable.other.assignment", + "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "new", - "t": "coffee.meta.class.keyword.operator.instance.constructor.new", + "t": "class.coffee.constructor.instance.keyword.meta.new.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new - rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.class.instance.constructor", + "t": "class.constructor.instance.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "Car", - "t": "coffee.meta.class.type.entity.name.instance.constructor", + "t": "class.coffee.constructor.entity.instance.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.quoted.double.coffee.punctuation.definition.begin", + "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "Volvo", - "t": "string.quoted.double.coffee", + "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.quoted.double.coffee.punctuation.definition.end", + "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" } }, { "c": "while", - "t": "coffee.keyword.control", + "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": " onTheRoad", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "()", - "t": "coffee.meta.brace.round", + "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " c", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ".", - "t": "coffee.meta.delimiter.method.period", + "t": "coffee.delimiter.meta.method.period", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "drive", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "()", - "t": "coffee.meta.brace.round", + "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "vehicles", - "t": "coffee.variable.other.assignment", + "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "(", - "t": "coffee.meta.brace.round", + "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "new", - "t": "coffee.meta.class.keyword.operator.instance.constructor.new", + "t": "class.coffee.constructor.instance.keyword.meta.new.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new - rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.class.instance.constructor", + "t": "class.constructor.instance.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "Car", - "t": "coffee.meta.class.type.entity.name.instance.constructor", + "t": "class.coffee.constructor.entity.instance.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "for", - "t": "coffee.keyword.control", + "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": " i ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "in", - "t": "coffee.keyword.control", + "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "[", - "t": "coffee.meta.brace.square", + "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "1", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" } }, { "c": "..", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": "100", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" } }, { "c": "]", - "t": "coffee.meta.brace.square", + "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ")", - "t": "coffee.meta.brace.round", + "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "startRace ", - "t": "coffee.meta.entity.name.function", + "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "(", - "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "vehicles", - "t": "coffee.meta.function.inline.variable.parameter", + "t": "coffee.function.inline.meta.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ")", - "t": "coffee.punctuation.definition.begin.meta.function.inline.parameters", + "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", - "t": "coffee.meta.function.inline", + "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "->", - "t": "coffee.meta.storage.type.function.inline", + "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "[", - "t": "coffee.meta.brace.square", + "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "vehicle", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": ".", - "t": "coffee.meta.delimiter.method.period", + "t": "coffee.delimiter.meta.method.period", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "drive", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "()", - "t": "coffee.meta.brace.round", + "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "for", - "t": "coffee.keyword.control", + "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": " vehicle ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "in", - "t": "coffee.keyword.control", + "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": " vehicles", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "]", - "t": "coffee.meta.brace.square", + "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "fancyRegExp", - "t": "coffee.variable.other.assignment", + "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", + "light_plus": ".vs .token - rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", + "light_vs": ".vs .token - rgb(0, 0, 0)", + "hc_black": ".hc-black .token - rgb(255, 255, 255)" } }, { "c": "///", - "t": "string.coffee.punctuation.definition.begin.regexp.block", + "t": "begin.block.coffee.definition.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\t", - "t": "string.coffee.regexp.block", + "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "(", - "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\\d", - "t": "string.coffee.meta.constant.regexp.block.group.character.character-class", + "t": "block.character.character-class.coffee.constant.group.meta.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "+", - "t": "string.coffee.meta.keyword.operator.regexp.block.group.quantifier", + "t": "block.coffee.group.keyword.meta.operator.quantifier.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": ")", - "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\t", - "t": "string.coffee.regexp.block", + "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "#", - "t": "string.coffee.punctuation.definition.line.regexp.block.comment.number-sign", + "t": "block.coffee.comment.definition.line.number-sign.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": " numbers", - "t": "string.coffee.line.regexp.block.comment.number-sign", + "t": "block.coffee.comment.line.number-sign.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\t", - "t": "string.coffee.regexp.block", + "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "(", - "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\\w", - "t": "string.coffee.meta.constant.regexp.block.group.character.character-class", + "t": "block.character.character-class.coffee.constant.group.meta.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "*", - "t": "string.coffee.meta.keyword.operator.regexp.block.group.quantifier", + "t": "block.coffee.group.keyword.meta.operator.quantifier.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" } }, { "c": ")", - "t": "string.coffee.punctuation.definition.meta.regexp.block.group", + "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\t", - "t": "string.coffee.regexp.block", + "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "#", - "t": "string.coffee.punctuation.definition.line.regexp.block.comment.number-sign", + "t": "block.coffee.comment.definition.line.number-sign.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": " letters", - "t": "string.coffee.line.regexp.block.comment.number-sign", + "t": "block.coffee.comment.line.number-sign.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "\t", - "t": "string.coffee.regexp.block", + "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "$", - "t": "string.coffee.keyword.control.regexp.block.anchor", + "t": "anchor.block.coffee.control.keyword.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" } }, { "c": "\t\t", - "t": "string.coffee.regexp.block", + "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "#", - "t": "string.coffee.punctuation.definition.line.regexp.block.comment.number-sign", + "t": "block.coffee.comment.definition.line.number-sign.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": " the end", - "t": "string.coffee.line.regexp.block.comment.number-sign", + "t": "block.coffee.comment.line.number-sign.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } }, { "c": "///", - "t": "string.coffee.punctuation.definition.end.regexp.block", + "t": "block.coffee.definition.end.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" } } ] \ No newline at end of file From 37f5e2b3552e62a708395c396bcc364fa844b64f Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 11 Apr 2016 21:16:54 +0200 Subject: [PATCH 042/117] [colorize tests] update test result data --- .../bat/test/colorize-results/test_bat.json | 402 +- .../test/colorize-results/test_clj.json | 3736 ++-- .../colorize-results/test-regex_coffee.json | 550 +- .../test/colorize-results/test_coffee.json | 1360 +- .../cpp/test/colorize-results/test_c.json | 1690 +- .../cpp/test/colorize-results/test_cc.json | 1638 +- .../cpp/test/colorize-results/test_cpp.json | 1108 +- .../css/test/colorize-results/test_css.json | 8866 ++++---- .../diff/test/colorize-results/test_diff.json | 418 +- .../test/colorize-results/Dockerfile.json | 310 +- .../fsharp/test/colorize-results/test_fs.json | 1148 +- .../test/colorize-results/COMMIT_EDITMSG.json | 276 +- .../colorize-results/git-rebase-todo.json | 588 +- .../go/test/colorize-results/test_go.json | 1340 +- .../html/test/colorize-results/test_html.json | 2658 +-- .../ini/test/colorize-results/test_ini.json | 316 +- .../jade/test/colorize-results/test_jade.json | 1686 +- .../test/colorize-results/basic_java.json | 2052 +- .../test/colorize-results/test_js.json | 2574 +-- .../test/colorize-results/test_jsx.json | 1960 +- .../json/test/colorize-results/test_json.json | 1260 +- .../less/test/colorize-results/test_less.json | 2512 +-- .../lua/test/colorize-results/test_lua.json | 694 +- .../make/test/colorize-results/makefile.json | 254 +- .../test/colorize-results/test_md.json | 1640 +- .../test/colorize-results/test_m.json | 2640 +-- .../perl/test/colorize-results/test_pl.json | 2406 +-- .../php/test/colorize-results/test_php.json | 2620 +-- .../test/colorize-results/test_ps1.json | 2494 +-- .../python/test/colorize-results/tets_py.json | 660 +- .../r/test/colorize-results/test_r.json | 842 +- .../ruby/test/colorize-results/test_rb.json | 2950 +-- .../rust/test/colorize-results/test_rs.json | 564 +- .../test/colorize-results/test_shader.json | 546 +- .../test/colorize-results/test_sh.json | 1988 +- .../sql/test/colorize-results/test_sql.json | 334 +- .../test/colorize-results/test_swift.json | 470 +- .../test/colorize-results/test_ts.json | 8984 ++++---- .../vb/test/colorize-results/test_vb.json | 2314 +-- .../test/colorize-results/test_cshtml.json | 3166 +-- .../colorize-results/test_handlebars.json | 2084 +- .../test/colorize-results/test_scss.json | 16950 ++++++++-------- .../xml/test/colorize-results/test_xml.json | 1902 +- .../yaml/test/colorize-results/test_yaml.json | 836 +- 44 files changed, 47893 insertions(+), 47893 deletions(-) diff --git a/extensions/bat/test/colorize-results/test_bat.json b/extensions/bat/test/colorize-results/test_bat.json index b137c903533..81b63a466e6 100644 --- a/extensions/bat/test/colorize-results/test_bat.json +++ b/extensions/bat/test/colorize-results/test_bat.json @@ -3,396 +3,396 @@ "c": "@", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "echo", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " off", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "setlocal", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": "title", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " VSCode Dev", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "pushd", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " ", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "%", - "t": "dosbatch.variable.parameter.function.begin.shell", + "t": "begin.dosbatch.function.parameter.shell.variable", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)" } }, { "c": "~dp0", - "t": "dosbatch.variable.parameter.function", + "t": "dosbatch.function.parameter.variable", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)" } }, { "c": "\\..", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": ":: Node modules", - "t": "dosbatch.comment.line.colons", + "t": "colons.comment.dosbatch.line", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)" } }, { "c": "if not exist", - "t": "keyword.dosbatch.control.conditional.if", + "t": "conditional.control.dosbatch.if.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)" } }, { "c": " node_modules ", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "call", - "t": "keyword.dosbatch.control.statement", + "t": "control.dosbatch.keyword.statement", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)" } }, { "c": " .\\scripts\\npm.bat install", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": ":: Get electron", - "t": "dosbatch.comment.line.colons", + "t": "colons.comment.dosbatch.line", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)" } }, { "c": "node .\\node_modules\\gulp\\bin\\gulp.js electron", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": ":: Build", - "t": "dosbatch.comment.line.colons", + "t": "colons.comment.dosbatch.line", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)" } }, { "c": "if not exist", - "t": "keyword.dosbatch.control.conditional.if", + "t": "conditional.control.dosbatch.if.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)" } }, { "c": " out node .\\node_modules\\gulp\\bin\\gulp.js compile", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": ":: Configuration", - "t": "dosbatch.comment.line.colons", + "t": "colons.comment.dosbatch.line", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)" } }, { "c": "set", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " NODE_ENV=development", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "set", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " VSCODE_DEV=1", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "set", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " ELECTRON_DEFAULT_ERROR_MODE=1", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "set", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " ELECTRON_ENABLE_LOGGING=1", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "set", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": " ELECTRON_ENABLE_STACK_DUMPING=1", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": ":: Launch Code", - "t": "dosbatch.comment.line.colons", + "t": "colons.comment.dosbatch.line", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)" } }, { "c": ".\\.build\\electron\\electron.exe . %*", "t": "", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "light_plus": ".vs .token", - "dark_plus": ".vs-dark .token" + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)", + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)" } }, { "c": "popd", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } }, { "c": "endlocal", - "t": "keyword.command.dosbatch", + "t": "command.dosbatch.keyword", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword" + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)" } } ] \ No newline at end of file diff --git a/extensions/clojure/test/colorize-results/test_clj.json b/extensions/clojure/test/colorize-results/test_clj.json index 9776e0e23cd..b073fb36507 100644 --- a/extensions/clojure/test/colorize-results/test_clj.json +++ b/extensions/clojure/test/colorize-results/test_clj.json @@ -1,3489 +1,3489 @@ [ { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; from http://clojure-doc.org/articles/tutorials/introduction.html", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "require", - "t": "clojure.meta.expression.keyword.control", + "t": "clojure.control.expression.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " '", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "clojure", - "t": "clojure.meta.expression.vector.symbol", + "t": "clojure.expression.meta.symbol.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "string", - "t": "clojure.meta.expression.vector.symbol", + "t": "clojure.expression.meta.symbol.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":as", - "t": "clojure.meta.expression.keyword.vector.constant", + "t": "clojure.constant.expression.keyword.meta.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "str", - "t": "clojure.meta.expression.vector.symbol", + "t": "clojure.expression.meta.symbol.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "clojure.definition.meta.expression.keyword.control.global", + "t": "clojure.control.definition.expression.global.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "the-answer", - "t": "clojure.definition.meta.expression.global.entity", + "t": "clojure.definition.entity.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "42", - "t": "clojure.definition.meta.expression.constant.global.numeric.decimal", + "t": "clojure.constant.decimal.definition.expression.global.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.meta.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "clojure.meta.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "clojure.meta.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " A vector", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "[", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.meta.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":two", - "t": "clojure.meta.keyword.vector.constant", + "t": "clojure.constant.keyword.meta.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.begin.vector.string.quoted.double", + "t": "begin.clojure.definition.double.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "three", - "t": "clojure.meta.vector.string.quoted.double", + "t": "clojure.double.meta.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.vector.end.string.quoted.double", + "t": "clojure.definition.double.end.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", "t": "clojure.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "clojure.meta.map", + "t": "clojure.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":a", - "t": "clojure.meta.keyword.constant.map", + "t": "clojure.constant.keyword.map.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.meta.map", + "t": "clojure.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.meta.constant.numeric.decimal.map", + "t": "clojure.constant.decimal.map.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "clojure.meta.map", + "t": "clojure.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":b", - "t": "clojure.meta.keyword.constant.map", + "t": "clojure.constant.keyword.map.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.meta.map", + "t": "clojure.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "clojure.meta.constant.numeric.decimal.map", + "t": "clojure.constant.decimal.map.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "}", - "t": "clojure.meta.map", + "t": "clojure.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#{", "t": "clojure.meta.set", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":a", - "t": "clojure.meta.keyword.constant.set", + "t": "clojure.constant.keyword.meta.set", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "clojure.meta.set", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":b", - "t": "clojure.meta.keyword.constant.set", + "t": "clojure.constant.keyword.meta.set", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "clojure.meta.set", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":c", - "t": "clojure.meta.keyword.constant.set", + "t": "clojure.constant.keyword.meta.set", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}", "t": "clojure.meta.set", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'(", - "t": "clojure.punctuation.meta.expression.section.begin.qouted-expression", + "t": "begin.clojure.expression.meta.punctuation.qouted-expression.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "t": "clojure.constant.decimal.meta.numeric.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "t": "clojure.constant.decimal.meta.numeric.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "t": "clojure.constant.decimal.meta.numeric.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end.qouted-expression", + "t": "clojure.end.expression.meta.punctuation.qouted-expression.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "clojure.definition.meta.expression.keyword.control.global", + "t": "clojure.control.definition.expression.global.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my-stuff", - "t": "clojure.definition.meta.expression.global.entity", + "t": "clojure.definition.entity.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.begin.vector.global.string.quoted.double", + "t": "begin.clojure.definition.double.expression.global.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "shirt", - "t": "clojure.definition.meta.expression.vector.global.string.quoted.double", + "t": "clojure.definition.double.expression.global.meta.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.vector.end.global.string.quoted.double", + "t": "clojure.definition.double.end.expression.global.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.begin.vector.global.string.quoted.double", + "t": "begin.clojure.definition.double.expression.global.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "coat", - "t": "clojure.definition.meta.expression.vector.global.string.quoted.double", + "t": "clojure.definition.double.expression.global.meta.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.vector.end.global.string.quoted.double", + "t": "clojure.definition.double.end.expression.global.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.begin.vector.global.string.quoted.double", + "t": "begin.clojure.definition.double.expression.global.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "hat", - "t": "clojure.definition.meta.expression.vector.global.string.quoted.double", + "t": "clojure.definition.double.expression.global.meta.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.vector.end.global.string.quoted.double", + "t": "clojure.definition.double.end.expression.global.meta.punctuation.quoted.string.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " this is more typical usage.", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "func", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "func2", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg1", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg2", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "other", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "func", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-a", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bar", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-x", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-y", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+ ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "xx", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "yy", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "zz", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arg", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-b", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'(", - "t": "clojure.punctuation.meta.expression.section.begin.qouted-expression", + "t": "begin.clojure.expression.meta.punctuation.qouted-expression.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+ ", "t": "clojure.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "t": "clojure.constant.decimal.meta.numeric.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "t": "clojure.constant.decimal.meta.numeric.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "clojure.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "clojure.meta.constant.numeric.decimal.qouted-expression", + "t": "clojure.constant.decimal.meta.numeric.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end.qouted-expression", + "t": "clojure.end.expression.meta.punctuation.qouted-expression.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; ⇒ (+ 1 2 3)", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "let", - "t": "clojure.meta.expression.control.storage", + "t": "clojure.control.expression.meta.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", - "t": "clojure.meta.expression.vector.symbol", + "t": "clojure.expression.meta.symbol.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "clojure.meta.expression.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.expression.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "height", - "t": "clojure.meta.expression.vector.symbol", + "t": "clojure.expression.meta.symbol.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20", - "t": "clojure.meta.expression.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.expression.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "thickness", - "t": "clojure.meta.expression.vector.symbol", + "t": "clojure.expression.meta.symbol.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "clojure.meta.expression.vector.constant.numeric.decimal", + "t": "clojure.constant.decimal.expression.meta.numeric.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "println", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.begin.string.quoted.double", + "t": "begin.clojure.definition.double.expression.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "hello from inside the `let`.", - "t": "clojure.meta.expression.string.quoted.double", + "t": "clojure.double.expression.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "clojure.punctuation.definition.meta.expression.end.string.quoted.double", + "t": "clojure.definition.double.end.expression.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "* ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "height", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "thickness", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; Vectors", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "clojure.definition.meta.expression.keyword.control.global", + "t": "clojure.control.definition.expression.global.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "v", - "t": "clojure.definition.meta.expression.global.entity", + "t": "clojure.definition.entity.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":a", - "t": "clojure.definition.meta.expression.keyword.vector.constant.global", + "t": "clojure.constant.definition.expression.global.keyword.meta.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":b", - "t": "clojure.definition.meta.expression.keyword.vector.constant.global", + "t": "clojure.constant.definition.expression.global.keyword.meta.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":c", - "t": "clojure.definition.meta.expression.keyword.vector.constant.global", + "t": "clojure.constant.definition.expression.global.keyword.meta.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "]", - "t": "clojure.definition.meta.expression.vector.global", + "t": "clojure.definition.expression.global.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "clojure.definition.meta.expression.keyword.control.global", + "t": "clojure.control.definition.expression.global.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "li", - "t": "clojure.definition.meta.expression.global.entity", + "t": "clojure.definition.entity.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'(", - "t": "clojure.punctuation.definition.meta.expression.section.begin.global.qouted-expression", + "t": "begin.clojure.definition.expression.global.meta.punctuation.qouted-expression.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":a", - "t": "clojure.definition.meta.expression.keyword.constant.global.qouted-expression", + "t": "clojure.constant.definition.expression.global.keyword.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global.qouted-expression", + "t": "clojure.definition.expression.global.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":b", - "t": "clojure.definition.meta.expression.keyword.constant.global.qouted-expression", + "t": "clojure.constant.definition.expression.global.keyword.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global.qouted-expression", + "t": "clojure.definition.expression.global.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":c", - "t": "clojure.definition.meta.expression.keyword.constant.global.qouted-expression", + "t": "clojure.constant.definition.expression.global.keyword.meta.qouted-expression", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": ")", - "t": "clojure.punctuation.definition.meta.expression.section.end.global.qouted-expression", + "t": "clojure.definition.end.expression.global.meta.punctuation.qouted-expression.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "conj", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " v ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":d", - "t": "clojure.meta.expression.keyword.constant", + "t": "clojure.constant.expression.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ⇒ [:a :b :c :d]", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "conj", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "li", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":d", - "t": "clojure.meta.expression.keyword.constant", + "t": "clojure.constant.expression.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ⇒ (:d :a :b :c)", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "v ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ⇒ is still [:a :b :c]", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "li", "t": "clojure.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ⇒ is still (:a :b :c)", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; Maps", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "clojure.definition.meta.expression.keyword.control.global", + "t": "clojure.control.definition.expression.global.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "m", - "t": "clojure.definition.meta.expression.global.entity", + "t": "clojure.definition.entity.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":a", - "t": "clojure.definition.meta.expression.keyword.constant.global.map", + "t": "clojure.constant.definition.expression.global.keyword.map.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.definition.meta.expression.constant.global.numeric.decimal.map", + "t": "clojure.constant.decimal.definition.expression.global.map.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":b", - "t": "clojure.definition.meta.expression.keyword.constant.global.map", + "t": "clojure.constant.definition.expression.global.keyword.map.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "clojure.definition.meta.expression.constant.global.numeric.decimal.map", + "t": "clojure.constant.decimal.definition.expression.global.map.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "}", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "assoc", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " m ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":c", - "t": "clojure.meta.expression.keyword.constant", + "t": "clojure.constant.expression.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "clojure.meta.expression.constant.numeric.decimal", + "t": "clojure.constant.decimal.expression.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ⇒ {:a 1 :c 3 :b 2}", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "dissoc", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " m ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":b", - "t": "clojure.meta.expression.keyword.constant", + "t": "clojure.constant.expression.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ⇒ {:a 1}", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "clojure.definition.meta.expression.keyword.control.global", + "t": "clojure.control.definition.expression.global.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my-atom", - "t": "clojure.definition.meta.expression.global.entity", + "t": "clojure.definition.entity.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "clojure.punctuation.definition.meta.expression.section.begin.global", + "t": "begin.clojure.definition.expression.global.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "atom", - "t": "clojure.definition.meta.expression.symbol.global", + "t": "clojure.definition.expression.global.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global", + "t": "clojure.definition.expression.global.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":foo", - "t": "clojure.definition.meta.expression.keyword.constant.global.map", + "t": "clojure.constant.definition.expression.global.keyword.map.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "clojure.definition.meta.expression.constant.global.numeric.decimal.map", + "t": "clojure.constant.decimal.definition.expression.global.map.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "}", - "t": "clojure.definition.meta.expression.global.map", + "t": "clojure.definition.expression.global.map.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.definition.meta.expression.section.end.global", + "t": "clojure.definition.end.expression.global.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; ⇒ #'user/my-atom", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", "t": "clojure.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "atom", "t": "clojure.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; ⇒ {:foo 1}", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "(", - "t": "clojure.punctuation.meta.expression.section.begin", + "t": "begin.clojure.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "swap", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "! ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "atom", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "update", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":foo", - "t": "clojure.meta.expression.keyword.vector.constant", + "t": "clojure.constant.expression.keyword.meta.vector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "]", - "t": "clojure.meta.expression.vector", + "t": "clojure.expression.meta.vector", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "clojure.meta.expression", + "t": "clojure.expression.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "inc", - "t": "clojure.meta.expression.symbol", + "t": "clojure.expression.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "clojure.punctuation.meta.expression.section.end", + "t": "clojure.end.expression.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; ⇒ {:foo 2}", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", "t": "clojure.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "atom", "t": "clojure.meta.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.clojure.punctuation.definition", + "t": "clojure.comment.definition.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "; ⇒ {:foo 2}", - "t": "comment.line.semicolon.clojure", + "t": "clojure.comment.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } } ] \ No newline at end of file diff --git a/extensions/coffeescript/test/colorize-results/test-regex_coffee.json b/extensions/coffeescript/test/colorize-results/test-regex_coffee.json index 2b922c6d94f..1cac4f43623 100644 --- a/extensions/coffeescript/test/colorize-results/test-regex_coffee.json +++ b/extensions/coffeescript/test/colorize-results/test-regex_coffee.json @@ -3,605 +3,605 @@ "c": "regex", "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", "t": "begin.coffee.definition.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "Hello ", "t": "coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "(", "t": "coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\d", "t": "character.character-class.coffee.constant.group.meta.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "+", "t": "coffee.group.keyword.meta.operator.quantifier.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", "t": "coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": " #{user}", "t": "coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "/", "t": "coffee.definition.end.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "g", "t": "coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "2", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "2", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "/", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "3", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "name", "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"", "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "hello", "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "test", "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "///", "t": "begin.block.coffee.definition.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": " ", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "#{", "t": "begin.block.coffee.embedded.line.meta.punctuation.regexp.section.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "name", "t": "block.coffee.embedded.line.meta.regexp.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "}", "t": "block.coffee.embedded.end.line.meta.punctuation.regexp.section.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "fancyRegExp = ", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "///", "t": "block.coffee.definition.end.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\\d", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", "t": "coffee.comment.definition.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " numbers", "t": "coffee.comment.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\\w", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", "t": "coffee.comment.definition.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " letters", "t": "coffee.comment.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t$\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", "t": "coffee.comment.definition.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " the end", "t": "coffee.comment.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment - rgb(96, 139, 78)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment - rgb(0, 128, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment - rgb(96, 139, 78)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment - rgb(0, 128, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment - rgb(124, 166, 104)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "///", "t": "begin.block.coffee.definition.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } } ] \ No newline at end of file diff --git a/extensions/coffeescript/test/colorize-results/test_coffee.json b/extensions/coffeescript/test/colorize-results/test_coffee.json index c713f89b710..7178436bcaf 100644 --- a/extensions/coffeescript/test/colorize-results/test_coffee.json +++ b/extensions/coffeescript/test/colorize-results/test_coffee.json @@ -3,1496 +3,1496 @@ "c": "\"\"\"", "t": "begin.coffee.definition.double.heredoc.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "A CoffeeScript sample.", "t": "coffee.double.heredoc.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"\"\"", "t": "coffee.definition.double.end.heredoc.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "class", "t": "class.coffee.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Vehicle", "t": "class.coffee.entity.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "constructor", "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@name", "t": "coffee.function.inline.meta.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=>", "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "drive", "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=>", "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " alert ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Drive ", "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "#{", "t": "begin.coffee.double.embedded.line.meta.punctuation.quoted.section.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "@", "t": "coffee.definition.double.embedded.instance.line.meta.other.punctuation.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "name", "t": "coffee.double.embedded.instance.line.meta.other.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "}", "t": "coffee.double.embedded.end.line.meta.punctuation.quoted.section.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "class", "t": "class.coffee.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Car", "t": "class.coffee.entity.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "extends", "t": "class.coffee.control.inheritance.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "class.coffee.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Vehicle", "t": "class.coffee.entity.inherited-class.meta.other", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "drive", "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=>", "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " alert ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Driving ", "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "#{", "t": "begin.coffee.double.embedded.line.meta.punctuation.quoted.section.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "@", "t": "coffee.definition.double.embedded.instance.line.meta.other.punctuation.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "name", "t": "coffee.double.embedded.instance.line.meta.other.quoted.readwrite.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "}", "t": "coffee.double.embedded.end.line.meta.punctuation.quoted.section.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "c", "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", "t": "class.coffee.constructor.instance.keyword.meta.new.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new rgb(86, 156, 214)" } }, { "c": " ", "t": "class.constructor.instance.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Car", "t": "class.coffee.constructor.entity.instance.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", "t": "begin.coffee.definition.double.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Volvo", "t": "coffee.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", "t": "coffee.definition.double.end.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string - rgb(206, 145, 120)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string - rgb(163, 21, 21)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string - rgb(206, 145, 120)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string - rgb(163, 21, 21)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string - rgb(206, 145, 120)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "while", "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " onTheRoad", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " c", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", "t": "coffee.delimiter.meta.method.period", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "drive", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "vehicles", "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", "t": "class.coffee.constructor.instance.keyword.meta.new.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator.new rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator.new rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator.new rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator.new rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator.new rgb(86, 156, 214)" } }, { "c": " ", "t": "class.constructor.instance.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Car", "t": "class.coffee.constructor.entity.instance.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type - rgb(78, 201, 176)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type - rgb(38, 127, 153)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " i ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in", "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "..", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "100", "t": "coffee.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric - rgb(181, 206, 168)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric - rgb(9, 136, 90)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric - rgb(181, 206, 168)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric - rgb(9, 136, 90)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric - rgb(181, 206, 168)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "startRace ", "t": "coffee.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function - rgb(220, 220, 170)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function - rgb(121, 94, 38)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "vehicles", "t": "coffee.function.inline.meta.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "begin.coffee.definition.function.inline.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "coffee.function.inline.meta", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "->", "t": "coffee.function.inline.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type - rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type - rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "vehicle", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", "t": "coffee.delimiter.meta.method.period", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "drive", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "brace.coffee.meta.round", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " vehicle ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in", "t": "coffee.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " vehicles", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", "t": "brace.coffee.meta.square", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fancyRegExp", "t": "assignment.coffee.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable - rgb(156, 220, 254)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable - rgb(0, 16, 128)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "coffee.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token - rgb(212, 212, 212)", - "light_plus": ".vs .token - rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token - rgb(212, 212, 212)", - "light_vs": ".vs .token - rgb(0, 0, 0)", - "hc_black": ".hc-black .token - rgb(255, 255, 255)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "///", "t": "begin.block.coffee.definition.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\t", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "(", "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\d", "t": "block.character.character-class.coffee.constant.group.meta.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "+", "t": "block.coffee.group.keyword.meta.operator.quantifier.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\t", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "#", "t": "block.coffee.comment.definition.line.number-sign.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": " numbers", "t": "block.coffee.comment.line.number-sign.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\t", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "(", "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\w", "t": "block.character.character-class.coffee.constant.group.meta.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "*", "t": "block.coffee.group.keyword.meta.operator.quantifier.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator - rgb(212, 212, 212)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator - rgb(0, 0, 0)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator - rgb(212, 212, 212)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator - rgb(0, 0, 0)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator - rgb(212, 212, 212)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", "t": "block.coffee.definition.group.meta.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\t", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "#", "t": "block.coffee.comment.definition.line.number-sign.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": " letters", "t": "block.coffee.comment.line.number-sign.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\t", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "$", "t": "anchor.block.coffee.control.keyword.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control - rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control - rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control - rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control - rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control - rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "\t\t", "t": "block.coffee.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "#", "t": "block.coffee.comment.definition.line.number-sign.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": " the end", "t": "block.coffee.comment.line.number-sign.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "///", "t": "block.coffee.definition.end.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp - rgb(209, 105, 105)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp - rgb(129, 31, 63)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp - rgb(209, 105, 105)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp - rgb(129, 31, 63)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp - rgb(209, 105, 105)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } } ] \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_c.json b/extensions/cpp/test/colorize-results/test_c.json index dec8cd274ef..ab62e2e0938 100644 --- a/extensions/cpp/test/colorize-results/test_c.json +++ b/extensions/cpp/test/colorize-results/test_c.json @@ -1,1553 +1,1553 @@ [ { "c": "/*", - "t": "comment.block.c.punctuation.definition.begin", + "t": "begin.block.c.comment.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " C Program to find roots of a quadratic equation when coefficients are entered by user. ", - "t": "comment.block.c", + "t": "block.c.comment", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.c.punctuation.definition.end", + "t": "block.c.comment.definition.end.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.c.punctuation.definition.begin", + "t": "begin.block.c.comment.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Library function sqrt() computes the square root. ", - "t": "comment.block.c", + "t": "block.c.comment", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.c.punctuation.definition.end", + "t": "block.c.comment.definition.end.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "c.meta.preprocessor.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "include", - "t": "c.meta.preprocessor.include.keyword.control.import", + "t": "c.control.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "c.meta.preprocessor.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "<", - "t": "c.punctuation.definition.begin.meta.preprocessor.include.string.quoted.other.lt-gt", + "t": "begin.c.definition.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "stdio.h", - "t": "c.meta.preprocessor.include.string.quoted.other.lt-gt", + "t": "c.include.lt-gt.meta.other.preprocessor.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "c.punctuation.definition.end.meta.preprocessor.include.string.quoted.other.lt-gt", + "t": "c.definition.end.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "#", - "t": "c.meta.preprocessor.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "include", - "t": "c.meta.preprocessor.include.keyword.control.import", + "t": "c.control.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "c.meta.preprocessor.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "<", - "t": "c.punctuation.definition.begin.meta.preprocessor.include.string.quoted.other.lt-gt", + "t": "begin.c.definition.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "math.h", - "t": "c.meta.preprocessor.include.string.quoted.other.lt-gt", + "t": "c.include.lt-gt.meta.other.preprocessor.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "c.punctuation.definition.end.meta.preprocessor.include.string.quoted.other.lt-gt", + "t": "c.definition.end.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "c.meta.preprocessor.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "/*", - "t": "comment.block.c.punctuation.definition.begin", + "t": "begin.block.c.comment.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " This is needed to use sqrt() function.", - "t": "comment.block.c", + "t": "block.c.comment", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.c.punctuation.definition.end", + "t": "block.c.comment.definition.end.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "int", "t": "c.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "c.punctuation.meta.function.whitespace.leading", + "t": "c.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "main", - "t": "c.meta.function.entity.name", + "t": "c.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "c.punctuation.begin.meta.function.parens.section", + "t": "begin.c.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "c.punctuation.end.meta.function.parens.section", + "t": "c.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.c.punctuation.begin.meta.function.section", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "float", - "t": "block.c.meta.storage.type.function", + "t": "block.c.function.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " a, b, c, determinant, r1,r2, real, imag;", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "printf", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Enter coefficients a, b and c: ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "scanf", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%f%f%f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",&a,&b,&c);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " determinant=b*b-", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "*a*c;", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.c.meta.keyword.control.function", + "t": "block.c.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.c.meta.function.initialization", + "t": "block.c.function.initialization.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.punctuation.definition.meta.function.initialization.parameters", + "t": "block.c.definition.function.initialization.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "determinant>", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.c.punctuation.begin.meta.function.section", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " r1= (-b+", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sqrt", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(determinant))/(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "*a);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " r2= (-b-", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sqrt", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(determinant))/(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "*a);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "printf", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Roots are: ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " and ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",r1 , r2);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.c.punctuation.end.meta.function.section", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "block.c.meta.keyword.control.function", + "t": "block.c.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.c.meta.keyword.control.function", + "t": "block.c.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.c.meta.function.initialization", + "t": "block.c.function.initialization.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.punctuation.definition.meta.function.initialization.parameters", + "t": "block.c.definition.function.initialization.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "determinant==", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.c.punctuation.begin.meta.function.section", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " r1 = r2 = -b/(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "*a);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "printf", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Roots are: ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " and ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", r1, r2);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.c.punctuation.end.meta.function.section", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "block.c.meta.keyword.control.function", + "t": "block.c.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.c.punctuation.begin.meta.function.section", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " real= -b/(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "*a);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " imag =", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "sqrt", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(-determinant)/(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "*a);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.punctuation.meta.function.whitespace.leading.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "printf", - "t": "block.c.meta.function.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.begin.meta.string.quoted.function.double", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Roots are: ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "+", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "i and ", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "-", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%.2f", - "t": "block.c.meta.string.quoted.other.function.double.constant.placeholder", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "i", - "t": "block.c.meta.string.quoted.function.double", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "block.c.punctuation.definition.end.meta.string.quoted.function.double", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", real, imag, real, imag);", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.c.punctuation.end.meta.function.section", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.c.meta.keyword.control.function", + "t": "block.c.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.c.meta.function.constant.numeric", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.c.meta.function", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.c.punctuation.end.meta.function.section", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_cc.json b/extensions/cpp/test/colorize-results/test_cc.json index 13a64fe46e2..2300076436f 100644 --- a/extensions/cpp/test/colorize-results/test_cc.json +++ b/extensions/cpp/test/colorize-results/test_cc.json @@ -1,1520 +1,1520 @@ [ { "c": "#", - "t": "meta.preprocessor.c", + "t": "c.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "if", - "t": "meta.preprocessor.c.keyword.control.import", + "t": "c.control.import.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " B4G_DEBUG_CHECK", - "t": "meta.preprocessor.c", + "t": "c.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading", + "t": "c.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "fprintf", - "t": "meta.c.function.entity.name", + "t": "c.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.punctuation.parens.section.begin", + "t": "begin.c.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "stderr,", - "t": "meta.c.function.parens", + "t": "c.function.meta.parens", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.parens.begin.string.quoted.double.definition", + "t": "begin.c.definition.double.function.meta.parens.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "num_candidate_ret=", - "t": "meta.c.function.parens.string.quoted.double", + "t": "c.double.function.meta.parens.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%d", - "t": "meta.c.function.parens.string.quoted.double.constant.other.placeholder", + "t": "c.constant.double.function.meta.other.parens.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ":", - "t": "meta.c.function.parens.string.quoted.double", + "t": "c.double.function.meta.parens.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.parens.string.quoted.double.definition.end", + "t": "c.definition.double.end.function.meta.parens.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", num_candidate", - "t": "meta.c.function.parens", + "t": "c.function.meta.parens", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.c.function.punctuation.parens.section.end", + "t": "c.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.function", + "t": "c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "c.keyword.control", + "t": "c.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", "t": "c.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " i=", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "c.constant.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";i", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.function-call", + "t": "block.c.function.function-call.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "o", - "t": "meta.c.function.block.function-call.support.any-method", + "t": "any-method.block.c.function.function-call.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.block.function-call", + "t": "block.c.function.function-call.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "meta.c.keyword.control.function.block.c++", + "t": "block.c.c++.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " O);", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.comment.c++", + "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "//", - "t": "meta.c.function.punctuation.definition.block.comment.c++.line.double-slash", + "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " sadness.", - "t": "meta.c.function.block.comment.c++.line.double-slash", + "t": "block.c.c++.comment.double-slash.function.line.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "sprintf", - "t": "meta.c.function.block.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(options, ", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "STYLE=Keramik;TITLE=", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%s", - "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";THEME=", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%s", - "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ...);", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.c.function.punctuation.section.end.block", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", "t": "c.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading", + "t": "c.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "main2", - "t": "meta.c.function.entity.name", + "t": "c.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.punctuation.parens.section.begin", + "t": "begin.c.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.c.function.punctuation.parens.section.end", + "t": "c.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function", + "t": "c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.c.function.punctuation.section.begin.block", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.support", + "t": "block.c.function.leading.meta.punctuation.support.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "printf", - "t": "meta.c.function.block.support.clib", + "t": "block.c.clib.function.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.comment.c++", + "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "//", - "t": "meta.c.function.punctuation.definition.block.comment.c++.line.double-slash", + "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " the rest of", - "t": "meta.c.function.block.comment.c++.line.double-slash", + "t": "block.c.c++.comment.double-slash.function.line.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.function-call", + "t": "block.c.function.function-call.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "asm", - "t": "meta.c.function.block.function-call.support.any-method", + "t": "any-method.block.c.function.function-call.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.block.function-call", + "t": "block.c.function.function-call.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "movw $0x38, ", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%a", - "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "x; ltr ", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%a", - "t": "meta.c.function.string.quoted.double.constant.other.placeholder.block", + "t": "block.c.constant.double.function.meta.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "x", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.function-call", + "t": "block.c.function.function-call.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "fn", - "t": "meta.c.function.block.function-call.support.any-method", + "t": "any-method.block.c.function.function-call.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.block.function-call", + "t": "block.c.function.function-call.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "{};", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.block.comment.c++", + "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "//", - "t": "meta.c.function.punctuation.definition.block.comment.c++.line.double-slash", + "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " the rest of", - "t": "meta.c.function.block.comment.c++.line.double-slash", + "t": "block.c.c++.comment.double-slash.function.line.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "}", - "t": "meta.c.function.punctuation.section.end.block", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_cpp.json b/extensions/cpp/test/colorize-results/test_cpp.json index 8bf9243c15d..f1a367eb6e4 100644 --- a/extensions/cpp/test/colorize-results/test_cpp.json +++ b/extensions/cpp/test/colorize-results/test_cpp.json @@ -1,1025 +1,1025 @@ [ { "c": "//", - "t": "punctuation.definition.comment.c++.line.double-slash", + "t": "c++.comment.definition.double-slash.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " classes example", - "t": "comment.c++.line.double-slash", + "t": "c++.comment.double-slash.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.preprocessor.c.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "include", - "t": "meta.preprocessor.c.keyword.control.import.include", + "t": "c.control.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.preprocessor.c.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "<", - "t": "meta.preprocessor.c.punctuation.begin.string.quoted.definition.other.include.lt-gt", + "t": "begin.c.definition.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "iostream", - "t": "meta.preprocessor.c.string.quoted.other.include.lt-gt", + "t": "c.include.lt-gt.meta.other.preprocessor.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "meta.preprocessor.c.punctuation.string.quoted.definition.other.end.include.lt-gt", + "t": "c.definition.end.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "using", - "t": "keyword.control.c++", + "t": "c++.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "namespace", - "t": "meta.storage.type.c++.namespace-block${2:+.std}", + "t": "c++.meta.namespace-block${2:+.std}.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c++.namespace-block${2:+.std}", + "t": "c++.meta.namespace-block${2:+.std}", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "std", - "t": "meta.entity.name.type.c++.namespace-block${2:+.std}", + "t": "c++.entity.meta.name.namespace-block${2:+.std}.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.keyword.control.c++.namespace-block${2:+.std}.namespace.$2", + "t": "$2.c++.control.keyword.meta.namespace.namespace-block${2:+.std}", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "class", - "t": "meta.storage.type.c++.class-struct-block", + "t": "c++.class-struct-block.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Rectangle", - "t": "meta.entity.name.type.c++.class-struct-block", + "t": "c++.class-struct-block.entity.meta.name.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.punctuation.section.begin.block.c++.class-struct-block", + "t": "begin.block.c++.class-struct-block.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.storage.type.c++.class-struct-block", + "t": "c.c++.class-struct-block.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " width, height;", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public:", - "t": "meta.storage.c++.class-struct-block.modifier.public", + "t": "c++.class-struct-block.meta.modifier.public.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", - "t": "meta.c.storage.type.c++.class-struct-block", + "t": "c.c++.class-struct-block.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "set_values", - "t": "meta.c.function.entity.name.c++.class-struct-block", + "t": "c.c++.class-struct-block.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.punctuation.parens.section.begin.c++.class-struct-block", + "t": "begin.c.c++.class-struct-block.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.function.parens.storage.type.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.meta.parens.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": ",", - "t": "meta.c.function.parens.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.meta.parens", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.function.parens.storage.type.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.meta.parens.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": ")", - "t": "meta.c.function.punctuation.parens.section.end.c++.class-struct-block", + "t": "c.c++.class-struct-block.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.function.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c++.class-struct-block", + "t": "c++.class-struct-block.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.storage.type.c++.class-struct-block", + "t": "c.c++.class-struct-block.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "area", - "t": "meta.c.function.entity.name.c++.class-struct-block", + "t": "c.c++.class-struct-block.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.punctuation.parens.section.begin.c++.class-struct-block", + "t": "begin.c.c++.class-struct-block.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.c.function.punctuation.parens.section.end.c++.class-struct-block", + "t": "c.c++.class-struct-block.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.c++.class-struct-block", + "t": "c.c++.class-struct-block.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.c.function.punctuation.section.begin.block.c++.class-struct-block", + "t": "begin.block.c.c++.class-struct-block.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.c.keyword.control.function.block.c++.class-struct-block", + "t": "block.c.c++.class-struct-block.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " width*height;", - "t": "meta.c.function.block.c++.class-struct-block", + "t": "block.c.c++.class-struct-block.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.c.function.punctuation.section.end.block.c++.class-struct-block", + "t": "block.c.c++.class-struct-block.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.punctuation.definition.c++.class-struct-block.invalid", + "t": "c++.class-struct-block.definition.invalid.meta.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.invalid", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.invalid", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.invalid", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.invalid", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.invalid" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.invalid rgb(244, 71, 71)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.invalid rgb(205, 49, 49)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.invalid rgb(244, 71, 71)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.invalid rgb(205, 49, 49)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.invalid rgb(244, 71, 71)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", "t": "c.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading", + "t": "c.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "Rectangle::set_values", - "t": "meta.c.function.entity.name", + "t": "c.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function", + "t": "c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.punctuation.parens.section.begin", + "t": "begin.c.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.function.parens.storage.type", + "t": "c.function.meta.parens.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " x, ", - "t": "meta.c.function.parens", + "t": "c.function.meta.parens", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.function.parens.storage.type", + "t": "c.function.meta.parens.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " y", - "t": "meta.c.function.parens", + "t": "c.function.meta.parens", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.c.function.punctuation.parens.section.end", + "t": "c.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function", + "t": "c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.c.function.punctuation.section.begin.block", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " width = x;", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " height = y;", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.c.function.punctuation.section.end.block", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", "t": "c.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.punctuation.whitespace.leading", + "t": "c.function.leading.meta.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark .token.whitespace", - "light_plus": ".vs .token.whitespace", - "dark_vs": ".vs-dark .token.whitespace", - "light_vs": ".vs .token.whitespace", - "hc_black": ".hc-black .token.whitespace" + "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black .token.whitespace rgba(227, 228, 226, 0.156863)" } }, { "c": "main", - "t": "meta.c.function.entity.name", + "t": "c.entity.function.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function", + "t": "c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.punctuation.parens.section.begin", + "t": "begin.c.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.c.function.punctuation.parens.section.end", + "t": "c.end.function.meta.parens.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function", + "t": "c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.c.function.punctuation.section.begin.block", + "t": "begin.block.c.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " Rectangle rect;", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " rect.", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "set_values", - "t": "meta.c.function.block.function-call.support.any-method", + "t": "any-method.block.c.function.function-call.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " (", - "t": "meta.c.function.block.function-call", + "t": "block.c.function.function-call.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "meta.c.function.constant.numeric.block", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4", - "t": "meta.c.function.constant.numeric.block", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ");", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " cout << ", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.begin.string.quoted.double.definition.block", + "t": "begin.block.c.definition.double.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "area: ", - "t": "meta.c.function.string.quoted.double.block", + "t": "block.c.double.function.meta.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.c.function.punctuation.string.quoted.double.definition.end.block", + "t": "block.c.definition.double.end.function.meta.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " << rect.", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "area", - "t": "meta.c.function.block.function-call.support.any-method", + "t": "any-method.block.c.function.function-call.meta.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.c.function.block.function-call", + "t": "block.c.function.function-call.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ");", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.c.keyword.control.function.block", + "t": "block.c.control.function.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "meta.c.function.constant.numeric.block", + "t": "block.c.constant.function.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.c.function.block", + "t": "block.c.function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.c.function.punctuation.section.end.block", + "t": "block.c.end.function.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/css/test/colorize-results/test_css.json b/extensions/css/test/colorize-results/test_css.json index 00917f62b77..9cbf7dbb3a5 100644 --- a/extensions/css/test/colorize-results/test_css.json +++ b/extensions/css/test/colorize-results/test_css.json @@ -1,8714 +1,8714 @@ [ { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " css Zen Garden default style v1.02 ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/ ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " This file based on 'Tranquille' by Dave Shea ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " You may use this file as a foundation for any new work, but you may find it easier to start from scratch. ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Not all elements are defined in this file, so you'll most likely want to refer to the xhtml as well. ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " basic elements ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "html", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-style", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "body", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "75", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "georgia", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sans-serif", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line-height", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1.88889", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "555753", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "fff", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url", - "t": "css.meta.property-list.support.property-value.function.misc", + "t": "css.function.meta.misc.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "blossoms.jpg", - "t": "css.meta.property-list.property-value.misc.variable.parameter", + "t": "css.meta.misc.parameter.property-list.property-value.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "no-repeat", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bottom", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "right", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-image", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " -webkit-linear-gradient(", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "start", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-image", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " -webkit-gradient(linear, ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bottom", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", from(", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "start", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "), to(", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-image", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " -moz-linear-gradient(", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "start", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-image", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " linear-gradient(to ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bottom", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "start", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-top", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-align", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "justify", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "h3", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "italic", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "normal", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1.4", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "em", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "georgia", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sans-serif", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "letter-spacing", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-bottom", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "7D775C", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "link", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-weight", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-decoration", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "none", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "B7A5DF", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "visited", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-weight", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-decoration", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "none", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "D4CDDC", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cursor", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "pointer", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "hover", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": ",", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "focus", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": ",", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "active", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-decoration", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "underline", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "9685BA", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "abbr", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-bottom", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "none", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/*", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " specific divs ", - "t": "comment.block.css", + "t": "block.comment.css", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.block.css.punctuation.definition", + "t": "block.comment.css.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "page-wrapper", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url", - "t": "css.meta.property-list.support.property-value.function.misc", + "t": "css.function.meta.misc.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "zen-bg.jpg", - "t": "css.meta.property-list.property-value.misc.variable.parameter", + "t": "css.meta.misc.parameter.property-list.property-value.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "no-repeat", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "175", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "110", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "position", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "relative", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "intro", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "min-width", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "470", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "header", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "h1", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "transparent", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url", - "t": "css.meta.property-list.support.property-value.function.misc", + "t": "css.function.meta.misc.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "h1.gif", - "t": "css.meta.property-list.property-value.misc.variable.parameter", + "t": "css.meta.misc.parameter.property-list.property-value.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "no-repeat", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-top", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "display", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "block", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "219", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "height", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "87", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "float", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-indent", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "white-space", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nowrap", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "overflow", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "hidden", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "header", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding-top", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "height", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "87", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "summary", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "clear", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "both", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "160", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "float", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "summary", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "p", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "italic", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1.1", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "em", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": "/", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2.2", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "georgia", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-align", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "center", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "preamble", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "clear", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "right", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "supporting", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding-left", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-bottom", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "40", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.id", + "t": "attribute-name.css.definition.entity.id.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "footer", - "t": "css.meta.selector.entity.other.attribute-name.id", + "t": "attribute-name.css.entity.id.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-align", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "center", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "footer", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "link", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": ",", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "footer", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "visited", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-right", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "sidebar", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-left", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "600", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "position", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "absolute", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "right", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "sidebar", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "wrapper", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "verdana", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sans-serif", - "t": "css.meta.property-list.support.property-value.constant.font-name", + "t": "constant.css.font-name.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "transparent", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url", - "t": "css.meta.property-list.support.property-value.function.misc", + "t": "css.function.meta.misc.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "paper-bg.jpg", - "t": "css.meta.property-list.property-value.misc.variable.parameter", + "t": "css.meta.misc.parameter.property-list.property-value.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "repeat-y", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-top", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "150", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "130", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "sidebar", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "li", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "link", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "988F5E", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "sidebar", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "li", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "a", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ":", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.definition.entity.meta.other.pseudo-class.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "visited", - "t": "css.meta.selector.entity.other.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.meta.other.pseudo-class.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "css.punctuation.definition.meta.property-list.begin.property-value.string.quoted.single", + "t": "begin.css.definition.meta.property-list.property-value.punctuation.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "#B3AE94", - "t": "css.meta.property-list.property-value.string.quoted.single", + "t": "css.meta.property-list.property-value.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "css.punctuation.definition.meta.property-list.property-value.end.string.quoted.single", + "t": "css.definition.end.meta.property-list.property-value.punctuation.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "css.punctuation.definition.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "extra1", - "t": "css.meta.selector.entity.other.attribute-name.class", + "t": "attribute-name.class.css.entity.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "transparent", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url", - "t": "css.meta.property-list.support.property-value.function.misc", + "t": "css.function.meta.misc.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cr2.gif", - "t": "css.meta.property-list.property-value.misc.variable.parameter", + "t": "css.meta.misc.parameter.property-list.property-value.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "css.punctuation.meta.property-list.section.property-value.function", + "t": "css.function.meta.property-list.property-value.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "no-repeat", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "position", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "absolute", - "t": "css.meta.property-list.support.property-value.constant", + "t": "constant.css.meta.property-list.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "40", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "right", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "148", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "height", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "110", - "t": "css.meta.property-list.property-value.constant.numeric", + "t": "constant.css.meta.numeric.property-list.property-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "css.meta.other.property-list.property-value.constant.numeric.keyword.unit", + "t": "constant.css.keyword.meta.numeric.other.property-list.property-value.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/diff/test/colorize-results/test_diff.json b/extensions/diff/test/colorize-results/test_diff.json index 21c44680237..7bcce0a5136 100644 --- a/extensions/diff/test/colorize-results/test_diff.json +++ b/extensions/diff/test/colorize-results/test_diff.json @@ -1,398 +1,398 @@ [ { "c": "---", - "t": "meta.diff.header.from-file.punctuation.definition", + "t": "definition.diff.from-file.header.meta.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header rgb(0, 0, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header rgb(0, 0, 128)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header rgb(0, 0, 128)" } }, { "c": " lao\tSat Jan 26 23:30:39 1991", - "t": "meta.diff.header.from-file", + "t": "diff.from-file.header.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header rgb(0, 0, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header rgb(0, 0, 128)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header rgb(0, 0, 128)" } }, { "c": "+++", - "t": "meta.diff.header.punctuation.definition.to-file", + "t": "definition.diff.header.meta.punctuation.to-file", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header rgb(0, 0, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header rgb(0, 0, 128)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header rgb(0, 0, 128)" } }, { "c": " tzu\tSat Jan 26 23:30:50 1991", - "t": "meta.diff.header.to-file", + "t": "diff.header.meta.to-file", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.header.diff rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.header rgb(0, 0, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.header.diff rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.header rgb(0, 0, 128)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.header rgb(0, 0, 128)" } }, { "c": "@@", - "t": "meta.diff.punctuation.definition.range.unified", + "t": "definition.diff.meta.punctuation.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.diff.range.unified", + "t": "diff.meta.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-1,7 +1,6", - "t": "meta.diff.range.unified.toc-list.line-number", + "t": "diff.line-number.meta.range.toc-list.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.diff.range.unified", + "t": "diff.meta.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@@", - "t": "meta.diff.punctuation.definition.range.unified", + "t": "definition.diff.meta.punctuation.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "diff.punctuation.definition.markup.deleted.inserted", + "t": "definition.deleted.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": "The Way that can be told of is not the eternal Way;", - "t": "diff.markup.deleted", + "t": "deleted.diff.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": "-", - "t": "diff.punctuation.definition.markup.deleted.inserted", + "t": "definition.deleted.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": "The name that can be named is not the eternal name.", - "t": "diff.markup.deleted", + "t": "deleted.diff.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": " The Nameless is the origin of Heaven and Earth;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "diff.punctuation.definition.markup.deleted.inserted", + "t": "definition.deleted.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": "The Named is the mother of all things.", - "t": "diff.markup.deleted", + "t": "deleted.diff.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": "+", - "t": "diff.punctuation.definition.markup.inserted", + "t": "definition.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "The named is the mother of all things.", - "t": "diff.markup.inserted", + "t": "diff.inserted.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "+", - "t": "diff.punctuation.definition.markup.inserted", + "t": "definition.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": " Therefore let there always be non-being,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " so we may see their subtlety,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " And let there always be being,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@@", - "t": "meta.diff.punctuation.definition.range.unified", + "t": "definition.diff.meta.punctuation.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.diff.range.unified", + "t": "diff.meta.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-9,3 +8,6", - "t": "meta.diff.range.unified.toc-list.line-number", + "t": "diff.line-number.meta.range.toc-list.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.diff.range.unified", + "t": "diff.meta.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@@", - "t": "meta.diff.punctuation.definition.range.unified", + "t": "definition.diff.meta.punctuation.range.unified", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " The two are the same,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " But after they are produced,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " they have different names.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "diff.punctuation.definition.markup.inserted", + "t": "definition.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "They both may be called deep and profound.", - "t": "diff.markup.inserted", + "t": "diff.inserted.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "+", - "t": "diff.punctuation.definition.markup.inserted", + "t": "definition.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "Deeper and more profound,", - "t": "diff.markup.inserted", + "t": "diff.inserted.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "+", - "t": "diff.punctuation.definition.markup.inserted", + "t": "definition.diff.inserted.markup.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "The door of all subtleties!", - "t": "diff.markup.inserted", + "t": "diff.inserted.markup", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } } ] \ No newline at end of file diff --git a/extensions/docker/test/colorize-results/Dockerfile.json b/extensions/docker/test/colorize-results/Dockerfile.json index 7cc7cd2e6c6..e3e9558180e 100644 --- a/extensions/docker/test/colorize-results/Dockerfile.json +++ b/extensions/docker/test/colorize-results/Dockerfile.json @@ -1,310 +1,310 @@ [ { "c": "FROM", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ubuntu", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "MAINTAINER", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " Kimbro Staken", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RUN", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " apt-get install -y software-properties-common python", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RUN", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " add-apt-repository ppa:chris-lea/node.js", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RUN", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " echo ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"deb http://us.archive.ubuntu.com/ubuntu/ precise universe\"", - "t": "dockerfile.string.quoted.double", + "t": "dockerfile.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " >> /etc/apt/sources.list", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RUN", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " apt-get update", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RUN", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " apt-get install -y nodejs", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "dockerfile.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.dockerfile.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "RUN apt-get install -y nodejs=0.6.12~dfsg1-1ubuntu1", - "t": "dockerfile.comment.line.number-sign", + "t": "comment.dockerfile.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "RUN", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " mkdir /var/www", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ADD", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " app.js /var/www/app.js", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "CMD", - "t": "keyword.other.special-method.dockerfile", + "t": "dockerfile.keyword.other.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " [", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"/usr/bin/node\"", - "t": "dockerfile.string.quoted.double", + "t": "dockerfile.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"/var/www/app.js\"", - "t": "dockerfile.string.quoted.double", + "t": "dockerfile.double.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "] ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/fsharp/test/colorize-results/test_fs.json b/extensions/fsharp/test/colorize-results/test_fs.json index f4e85f91d20..68ec1f0fa1e 100644 --- a/extensions/fsharp/test/colorize-results/test_fs.json +++ b/extensions/fsharp/test/colorize-results/test_fs.json @@ -1,1157 +1,1157 @@ [ { "c": "// from https://msdn.microsoft.com/en-us/library/dd233160.aspx", - "t": "comment.line.double-slash.fsharp", + "t": "comment.double-slash.fsharp.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "// The declaration creates a constructor that takes two values, name and age.", - "t": "comment.line.double-slash.fsharp", + "t": "comment.double-slash.fsharp.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "type Person(name", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "string, age", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "int) ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "let mutable", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "internalAge", - "t": "fsharp.other.meta.binding.variable", + "t": "binding.fsharp.meta.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " age", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "(name", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "string) ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " Person(name, ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "fsharp.constant.numeric.integer.nativeint", + "t": "constant.fsharp.integer.nativeint.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "member", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this.Name", - "t": "fsharp.other.meta.binding.variable", + "t": "binding.fsharp.meta.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " name", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// A read/write property.", - "t": "comment.line.double-slash.fsharp", + "t": "comment.double-slash.fsharp.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "member", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this.Age", - "t": "fsharp.other.meta.binding.variable", + "t": "binding.fsharp.meta.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "with", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " get", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "fsharp.constant.language.unit", + "t": "constant.fsharp.language.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " internalAge", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "and", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " set(value) ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " internalAge ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<-", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " value", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "member", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this.HasABirthday", - "t": "fsharp.other.meta.binding.variable", + "t": "binding.fsharp.meta.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "fsharp.meta.binding.constant.language.unit", + "t": "binding.constant.fsharp.language.meta.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " internalAge ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<-", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " internalAge ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "fsharp.constant.numeric.integer.nativeint", + "t": "constant.fsharp.integer.nativeint.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "member", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this.IsOfAge", - "t": "fsharp.other.meta.binding.variable", + "t": "binding.fsharp.meta.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "targetAge", - "t": "fsharp.meta.binding.variable.parameter", + "t": "binding.fsharp.meta.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " internalAge ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">=", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " targetAge", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "override", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this.ToString", - "t": "fsharp.other.meta.binding.variable", + "t": "binding.fsharp.meta.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "fsharp.meta.binding.constant.language.unit", + "t": "binding.constant.fsharp.language.meta.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", - "t": "fsharp.meta.binding", + "t": "binding.fsharp.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "fsharp.keyword.other.meta.binding", + "t": "binding.fsharp.keyword.meta.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "fsharp.string.quoted.double.punctuation.definition.begin", + "t": "begin.definition.double.fsharp.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Name: ", - "t": "fsharp.string.quoted.double", + "t": "double.fsharp.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "fsharp.string.quoted.double.punctuation.definition.end", + "t": "definition.double.end.fsharp.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " name ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "fsharp.string.quoted.double.punctuation.definition.begin", + "t": "begin.definition.double.fsharp.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\n", - "t": "fsharp.constant.string.quoted.double.character.escape", + "t": "character.constant.double.escape.fsharp.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "fsharp.string.quoted.double.punctuation.definition.end", + "t": "definition.double.end.fsharp.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "fsharp.string.quoted.double.punctuation.definition.begin", + "t": "begin.definition.double.fsharp.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Age: ", - "t": "fsharp.string.quoted.double", + "t": "double.fsharp.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "fsharp.string.quoted.double.punctuation.definition.end", + "t": "definition.double.end.fsharp.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "fsharp.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " (string)internalAge", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/git/test/colorize-results/COMMIT_EDITMSG.json b/extensions/git/test/colorize-results/COMMIT_EDITMSG.json index 5be091450f2..7f29f2e26cf 100644 --- a/extensions/git/test/colorize-results/COMMIT_EDITMSG.json +++ b/extensions/git/test/colorize-results/COMMIT_EDITMSG.json @@ -1,255 +1,255 @@ [ { "c": "This is the summary line. It can't be too long.", - "t": "meta.scope.message.git-commit.subject", + "t": "git-commit.message.meta.scope.subject", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "After I can write a much more detailed description without quite the same restrictions on length.", - "t": "meta.scope.message.git-commit", + "t": "git-commit.message.meta.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Please enter the commit message for your changes. Lines starting", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " with '#' will be ignored, and an empty message aborts the commit.", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " On branch master", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Your branch is up-to-date with 'origin/master'.", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Changes to be committed:", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "deleted: README.md", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.markup.deleted", + "t": "comment.deleted.git-commit.line.markup.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.deleted rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.deleted rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.deleted rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.deleted rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.deleted rgb(206, 145, 120)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "modified: index.less", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.markup.changed", + "t": "changed.comment.git-commit.line.markup.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.changed", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.changed", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.changed", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.changed", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.changed" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.changed rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.changed rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.changed rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.changed rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.changed rgb(86, 156, 214)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign", + "t": "comment.git-commit.line.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "new file: spec/COMMIT_EDITMSG", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.markup.inserted", + "t": "comment.git-commit.inserted.line.markup.meta.metadata.number-sign.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.markup.inserted rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.markup.inserted rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.markup.inserted rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.markup.inserted rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.markup.inserted rgb(181, 206, 168)" } }, { "c": "#", - "t": "meta.scope.git-commit.metadata.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-commit.line.meta.metadata.number-sign.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } } ] \ No newline at end of file diff --git a/extensions/git/test/colorize-results/git-rebase-todo.json b/extensions/git/test/colorize-results/git-rebase-todo.json index be1dcdcab1e..4f514817735 100644 --- a/extensions/git/test/colorize-results/git-rebase-todo.json +++ b/extensions/git/test/colorize-results/git-rebase-todo.json @@ -1,541 +1,541 @@ [ { "c": "pick", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1fc6c95", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Patch A", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "squash", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fa39187", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Something to add to patch A", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "pick", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "7b36971", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Something to move before patch B", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "pick", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "6b2481b", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Patch B", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fixup", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "c619268", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "A fix for Patch B", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "edit", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "dd1475d", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Something I want to split", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "reword", - "t": "meta.commit-command.git-rebase.support.function", + "t": "commit-command.function.git-rebase.meta.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.function.git-rebase rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.function.git-rebase rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.function.git-rebase rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.function.git-rebase rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4ca2acc", - "t": "meta.commit-command.git-rebase.constant.sha", + "t": "commit-command.constant.git-rebase.meta.sha", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.sha.git-rebase rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.sha.git-rebase rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.sha.git-rebase rgb(181, 206, 168)" } }, { "c": " ", - "t": "meta.commit-command.git-rebase", + "t": "commit-command.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "i cant' typ goods", - "t": "meta.commit-command.git-rebase.commit-message", + "t": "commit-command.commit-message.git-rebase.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Commands:", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " p, pick = use commit", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " r, reword = use commit, but edit the commit message", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " e, edit = use commit, but stop for amending", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " s, squash = use commit, but meld into previous commit", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " f, fixup = like \"squash\", but discard this commit's log message", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "git-rebase.comment.line.number-sign.punctuation.definition", + "t": "comment.definition.git-rebase.line.number-sign.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " x, exec = run command (the rest of the line) using shell", - "t": "git-rebase.comment.line.number-sign", + "t": "comment.git-rebase.line.number-sign", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } } ] \ No newline at end of file diff --git a/extensions/go/test/colorize-results/test_go.json b/extensions/go/test/colorize-results/test_go.json index fae4de9a764..33160e16b3e 100644 --- a/extensions/go/test/colorize-results/test_go.json +++ b/extensions/go/test/colorize-results/test_go.json @@ -1,1300 +1,1300 @@ [ { "c": "package", - "t": "keyword.package.go", + "t": "go.keyword.package", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "main", - "t": "package.go.entity.name", + "t": "entity.go.name.package", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "import", - "t": "keyword.go.import", + "t": "go.import.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "encoding/base64", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "fmt", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "func", - "t": "keyword.go.function", + "t": "function.go.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "main", - "t": "entity.name.function", + "t": "entity.function.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "go.punctuation.other.bracket.curly", + "t": "bracket.curly.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "dnsName", - "t": "go.other.variable.assignment", + "t": "assignment.go.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":=", - "t": "keyword.go.assignment.operator", + "t": "assignment.go.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "test-vm-from-go", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "storageAccount", - "t": "go.other.variable.assignment", + "t": "assignment.go.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":=", - "t": "keyword.go.assignment.operator", + "t": "assignment.go.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "mystorageaccount", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "client", - "t": "go.other.variable.assignment", + "t": "assignment.go.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "err", - "t": "go.other.variable.assignment", + "t": "assignment.go.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":=", - "t": "keyword.go.assignment.operator", + "t": "assignment.go.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " management", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "go.punctuation.other.period", + "t": "go.other.period.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ClientFromPublishSettingsFile", - "t": "go.function.support", + "t": "function.go.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "path/to/downloaded.publishsettings", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.go.control", + "t": "control.go.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " err ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "!=", - "t": "keyword.go.operator.comparison", + "t": "comparison.go.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nil", - "t": "go.constant.language", + "t": "constant.go.language", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "go.punctuation.other.bracket.curly", + "t": "bracket.curly.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "panic", - "t": "go.function.support.builtin", + "t": "builtin.function.go.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "err", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "go.punctuation.other.bracket.curly", + "t": "bracket.curly.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "//", - "t": "go.punctuation.definition.comment.line.double-slash", + "t": "comment.definition.double-slash.go.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " create virtual machine", - "t": "go.comment.line.double-slash", + "t": "comment.double-slash.go.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "role", - "t": "go.other.variable.assignment", + "t": "assignment.go.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":=", - "t": "keyword.go.assignment.operator", + "t": "assignment.go.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " vmutils", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "go.punctuation.other.period", + "t": "go.other.period.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NewVMConfiguration", - "t": "go.function.support", + "t": "function.go.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "dnsName", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " vmSize", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " vmutils", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "go.punctuation.other.period", + "t": "go.other.period.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ConfigureDeploymentFromPlatformImage", - "t": "go.function.support", + "t": "function.go.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "&", - "t": "keyword.go.operator.address", + "t": "address.go.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "role", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " vmImage", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " fmt", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "go.punctuation.other.period", + "t": "go.other.period.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Sprintf", - "t": "go.function.support", + "t": "function.go.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "http://", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%s", - "t": "go.other.string.quoted.double.constant.placeholder", + "t": "constant.double.go.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ".blob.core.windows.net/sdktest/", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%s", - "t": "go.other.string.quoted.double.constant.placeholder", + "t": "constant.double.go.other.placeholder.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ".vhd", - "t": "go.string.quoted.double", + "t": "double.go.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " storageAccount", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " dnsName", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "go.punctuation.other.comma", + "t": "comma.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.begin", + "t": "begin.definition.double.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "go.punctuation.string.quoted.double.definition.end", + "t": "definition.double.end.go.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "go.punctuation.other.bracket.round", + "t": "bracket.go.other.punctuation.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "go.punctuation.other.bracket.curly", + "t": "bracket.curly.go.other.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/html/test/colorize-results/test_html.json b/extensions/html/test/colorize-results/test_html.json index 1b0382e4e98..972cebfd0d9 100644 --- a/extensions/html/test/colorize-results/test_html.json +++ b/extensions/html/test/colorize-results/test_html.json @@ -1,2598 +1,2598 @@ [ { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "html", "t": "entity.name.tag.tag-html", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "head", "t": "entity.name.tag.tag-head", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "meta", "t": "entity.name.tag.tag-meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "charset", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"utf-8\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "title", "t": "entity.name.tag.tag-title", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "VSCode Tests", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "link", "t": "entity.name.tag.tag-link", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "href", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "rel", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"stylesheet\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/>", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "style", "t": "entity.name.tag.tag-style", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "type", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text/css\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\t", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "body", - "t": "css.meta.selector.entity.name.tag", + "t": "css.entity.meta.name.selector.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "css.meta.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "css.punctuation.meta.property-list.section.begin", + "t": "begin.css.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "purple", - "t": "css.meta.property-list.support.property-value.constant.color.w3c-standard-color-name", + "t": "color.constant.css.meta.property-list.property-value.support.w3c-standard-color-name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-color", "t": "css.meta.property-list.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "css.punctuation.meta.property-list.property-value.separator.key-value", + "t": "css.key-value.meta.property-list.property-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "css.meta.property-list.property-value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "css.punctuation.definition.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.definition.meta.other.property-list.property-value.punctuation.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": "d8da3d", - "t": "css.meta.other.property-list.property-value.constant.color.rgb-value", + "t": "color.constant.css.meta.other.property-list.property-value.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", - "t": "css.punctuation.meta.property-list.property-value.terminator.rule", + "t": "css.meta.property-list.property-value.punctuation.rule.terminator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "css.meta.property-list", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "css.punctuation.meta.property-list.section.end", + "t": "css.end.meta.property-list.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "body", "t": "entity.name.tag.tag-body", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", "t": "entity.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"mocha\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", "t": "comment.html", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "script", "t": "entity.name.tag.tag-script", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "src", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"/out/vs/loader.js\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "script", "t": "entity.name.tag.tag-script", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "src", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "script", "t": "entity.name.tag.tag-script", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\tmocha.setup", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'tdd'", - "t": "js.string.single", + "t": "js.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\trequire.config", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly", + "t": "block.brace.curly.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "meta.js.block", + "t": "block.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "baseUrl: ", - "t": "meta.js.block.object.member", + "t": "block.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'/out'", - "t": "meta.js.string.single.block.object.member", + "t": "block.js.member.meta.object.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",", - "t": "meta.js.block", + "t": "block.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "meta.js.block", + "t": "block.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "paths: ", - "t": "meta.js.block.object.member", + "t": "block.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.object.member", + "t": "block.brace.curly.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\tassert: ", - "t": "meta.js.block.object.member", + "t": "block.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'/test/assert.js'", - "t": "meta.js.string.single.block.object.member", + "t": "block.js.member.meta.object.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\t\t\t", - "t": "meta.js.block.object.member", + "t": "block.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.object.member", + "t": "block.brace.curly.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.js.block.object.member", + "t": "block.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly", + "t": "block.brace.curly.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\trequire", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "meta.brace.js.block.curly", + "t": "block.brace.curly.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " modules ", - "t": "meta.js.block", + "t": "block.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "meta.brace.js.block.curly", + "t": "block.brace.curly.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.js.function.storage.type", + "t": "function.js.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.function", + "t": "function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.brace.js.function.type.parameter.round", + "t": "brace.function.js.meta.parameter.round.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.function", + "t": "function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\tmocha.run", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", "t": "entity.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "span", "t": "entity.name.tag.tag-span", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "octicon", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "span", "t": "entity.name.tag.tag-span", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"signed-in-tab-flash\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "You signed in with another tab or window. ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "a", "t": "entity.name.tag.tag-a", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "href", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Reload", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " to refresh your session.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "span", "t": "entity.name.tag.tag-span", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"signed-out-tab-flash\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "You signed out in another tab or window. ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "a", "t": "entity.name.tag.tag-a", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "href", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Reload", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " to refresh your session.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } } ] \ No newline at end of file diff --git a/extensions/ini/test/colorize-results/test_ini.json b/extensions/ini/test/colorize-results/test_ini.json index c2a4da490e3..cd6b02c0f07 100644 --- a/extensions/ini/test/colorize-results/test_ini.json +++ b/extensions/ini/test/colorize-results/test_ini.json @@ -1,299 +1,299 @@ [ { "c": ";", - "t": "comment.line.semicolon.ini.punctuation.definition", + "t": "comment.definition.ini.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " last modified 1 April 2001 by John Doe", - "t": "comment.line.semicolon.ini", + "t": "comment.ini.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "[", - "t": "ini.punctuation.definition.entity.name.section.group-title", + "t": "definition.entity.group-title.ini.name.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "owner", - "t": "ini.entity.name.section.group-title", + "t": "entity.group-title.ini.name.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "ini.punctuation.definition.entity.name.section.group-title", + "t": "definition.entity.group-title.ini.name.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "name", - "t": "ini.definition.keyword.other", + "t": "definition.ini.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "=", - "t": "ini.punctuation.separator.key-value", + "t": "ini.key-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "John Doe", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "organization", - "t": "ini.definition.keyword.other", + "t": "definition.ini.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "=", - "t": "ini.punctuation.separator.key-value", + "t": "ini.key-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Acme Widgets Inc.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "ini.punctuation.definition.entity.name.section.group-title", + "t": "definition.entity.group-title.ini.name.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "database", - "t": "ini.entity.name.section.group-title", + "t": "entity.group-title.ini.name.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "ini.punctuation.definition.entity.name.section.group-title", + "t": "definition.entity.group-title.ini.name.punctuation.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "comment.line.semicolon.ini.punctuation.definition", + "t": "comment.definition.ini.line.punctuation.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " use IP address in case network name resolution is not working", - "t": "comment.line.semicolon.ini", + "t": "comment.ini.line.semicolon", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "server", - "t": "ini.definition.keyword.other", + "t": "definition.ini.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "=", - "t": "ini.punctuation.separator.key-value", + "t": "ini.key-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "192.0.2.62", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "port", - "t": "ini.definition.keyword.other", + "t": "definition.ini.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "=", - "t": "ini.punctuation.separator.key-value", + "t": "ini.key-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "143", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "file", - "t": "ini.definition.keyword.other", + "t": "definition.ini.keyword.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "=", - "t": "ini.punctuation.separator.key-value", + "t": "ini.key-value.punctuation.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "ini.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.ini.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "payroll.dat", - "t": "ini.string.quoted.double", + "t": "double.ini.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "ini.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.ini.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } } ] \ No newline at end of file diff --git a/extensions/jade/test/colorize-results/test_jade.json b/extensions/jade/test/colorize-results/test_jade.json index 542d6484933..ddf2cf1608e 100644 --- a/extensions/jade/test/colorize-results/test_jade.json +++ b/extensions/jade/test/colorize-results/test_jade.json @@ -1,1597 +1,1597 @@ [ { "c": "// h1(name=maintainer.name)", - "t": "string.comment.buffered.block.jade", + "t": "block.buffered.comment.jade.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "// | Maintainer:", - "t": "string.comment.buffered.block.jade", + "t": "block.buffered.comment.jade.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "// = ' ' + maintainer.name", - "t": "string.comment.buffered.block.jade", + "t": "block.buffered.comment.jade.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "table", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "tr", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "td", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "style", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "'width: '", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "+", - "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "t": "arithmetic.attribute_value.js.keyword.meta.operator.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "(", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "100", - "t": "meta.tag.other.constant.attribute_value.js.numeric", + "t": "attribute_value.constant.js.meta.numeric.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "/", - "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "t": "arithmetic.attribute_value.js.keyword.meta.operator.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "2", - "t": "meta.tag.other.constant.attribute_value.js.numeric", + "t": "attribute_value.constant.js.meta.numeric.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ")", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "+", - "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "t": "arithmetic.attribute_value.js.keyword.meta.operator.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "'%'", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ")", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ".", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Twitter", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "td", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "=", "t": "constant.js.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " maintainer.twitter", "t": "js.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "tr", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "td", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "style", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "'width: '", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "+", - "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "t": "arithmetic.attribute_value.js.keyword.meta.operator.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "(", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "100", - "t": "meta.tag.other.constant.attribute_value.js.numeric", + "t": "attribute_value.constant.js.meta.numeric.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "/", - "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "t": "arithmetic.attribute_value.js.keyword.meta.operator.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "2", - "t": "meta.tag.other.constant.attribute_value.js.numeric", + "t": "attribute_value.constant.js.meta.numeric.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ")", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "+", - "t": "meta.tag.other.attribute_value.keyword.operator.arithmetic.js", + "t": "arithmetic.attribute_value.js.keyword.meta.operator.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "'%'", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ")", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ".", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Blog", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "td", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "=", "t": "constant.js.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " maintainer.blog", "t": "js.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "js.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.source.var.expr", + "t": "expr.js.meta.source.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.source.var.expr.storage.type", + "t": "expr.js.meta.source.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.source.var.expr", + "t": "expr.js.meta.source.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "user", - "t": "meta.js.source.var.expr.var-single-variable.variable", + "t": "expr.js.meta.source.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "meta.js.source.var.expr.var-single-variable", + "t": "expr.js.meta.source.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.meta.js.source.var.expr.var-single-variable.brace.curly", + "t": "block.brace.curly.expr.js.meta.source.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.meta.js.source.var.expr.var-single-variable", + "t": "block.expr.js.meta.source.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "name: ", - "t": "block.meta.js.source.var.expr.var-single-variable.object.member", + "t": "block.expr.js.member.meta.object.source.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'John'", - "t": "string.block.meta.js.source.var.expr.var-single-variable.object.member.single", + "t": "block.expr.js.member.meta.object.single.source.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "block.meta.js.source.var.expr.var-single-variable.object.member", + "t": "block.expr.js.member.meta.object.source.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.meta.js.source.var.expr.var-single-variable.brace.curly", + "t": "block.brace.curly.expr.js.meta.source.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "jade.meta.storage.type.control.flow.function", + "t": "control.flow.function.jade.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " user", - "t": "jade.meta.control.flow", + "t": "control.flow.jade.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "div", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ".welcomebox", "t": "constant.js.language", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " // Filtered inline output", - "t": "string.comment.buffered.block.jade", + "t": "block.buffered.comment.jade.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ".", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " Welcome, ", "t": "block.jade.text", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#{user.name}", - "t": "string.block.jade.text.interpolated", + "t": "block.interpolated.jade.string.text", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "else", - "t": "jade.meta.storage.type.control.flow.function", + "t": "control.flow.function.jade.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " div.loginbox", - "t": "jade.meta.control.flow", + "t": "control.flow.jade.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "form", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "name", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"login\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.tag.other", + "t": "meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "action", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"/login\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.tag.other", + "t": "meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "method", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"post\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ")", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "input", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "type", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.tag.other", + "t": "meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "name", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"user\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ")", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "input", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "type", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"password\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.tag.other", + "t": "meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "name", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"pass\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ")", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "input", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "type", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"submit\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.tag.other", + "t": "meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "value", - "t": "jade.meta.tag.other.entity.attribute-name", + "t": "attribute-name.entity.jade.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.other.attribute_value", + "t": "attribute_value.meta.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"login\"", - "t": "string.jade.meta.tag.other.attribute_value.quoted", + "t": "attribute_value.jade.meta.other.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.jade rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.jade rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ")", - "t": "jade.meta.tag.name.other.constant.attribute", + "t": "attribute.constant.jade.meta.name.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", - "t": "jade.meta.tag.other entity.name", + "t": "jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#[", - "t": "jade.name.entity.function.inline", + "t": "entity.function.inline.jade.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "code", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "jade.inline", + "t": "inline.jade", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "samp", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "]", - "t": "jade.name.entity.function.inline", + "t": "entity.function.inline.jade.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " — Regular text. ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#[", - "t": "jade.name.entity.function.inline", + "t": "entity.function.inline.jade.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "samp", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "jade.inline", + "t": "inline.jade", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "This", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "jade.inline", + "t": "inline.jade", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "is", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "jade.inline", + "t": "inline.jade", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sample", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "jade.inline", + "t": "inline.jade", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text", - "t": "jade.meta.tag.other entity.name.inline", + "t": "inline.jade.meta.name.other entity.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "]", - "t": "jade.name.entity.function.inline", + "t": "entity.function.inline.jade.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " more text.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/java/test/colorize-results/basic_java.json b/extensions/java/test/colorize-results/basic_java.json index 805b2dc5dae..4ecae79f2af 100644 --- a/extensions/java/test/colorize-results/basic_java.json +++ b/extensions/java/test/colorize-results/basic_java.json @@ -1,1883 +1,1883 @@ [ { "c": "import", - "t": "meta.import.java.keyword.other", + "t": "import.java.keyword.meta.other", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.import.java", + "t": "import.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "org", - "t": "meta.import.java.storage.modifier", + "t": "import.java.meta.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": ".", - "t": "meta.import.java.storage.modifier.punctuation.separator", + "t": "import.java.meta.modifier.punctuation.separator.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": "junit", - "t": "meta.import.java.storage.modifier", + "t": "import.java.meta.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": ".", - "t": "meta.import.java.storage.modifier.punctuation.separator", + "t": "import.java.meta.modifier.punctuation.separator.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": "Test", - "t": "meta.import.java.storage.modifier", + "t": "import.java.meta.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": ";", - "t": "meta.import.java.punctuation.terminator", + "t": "import.java.meta.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/*", - "t": "java.punctuation.comment.block.definition", + "t": "block.comment.definition.java.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * Multi line comment", - "t": "java.comment.block", + "t": "block.comment.java", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "java.comment.block", + "t": "block.comment.java", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "java.punctuation.comment.block.definition", + "t": "block.comment.definition.java.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "public", - "t": "meta.java.storage.modifier.class", + "t": "class.java.meta.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class", + "t": "class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "meta.java.storage.modifier.class.identifier", + "t": "class.identifier.java.meta.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.identifier", + "t": "class.identifier.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "TestClass", - "t": "meta.java.class.identifier.entity.name.type", + "t": "class.entity.identifier.java.meta.name.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.java.class", + "t": "class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.java.punctuation.class.body.section.begin", + "t": "begin.body.class.java.meta.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "meta.java.storage.modifier.class.body", + "t": "body.class.java.meta.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "String", - "t": "meta.java.storage.class.type.body", + "t": "body.class.java.meta.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " aString", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body", + "t": "body.class.java.meta.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/*", - "t": "meta.java.punctuation.comment.block.definition.class.body", + "t": "block.body.class.comment.definition.java.meta.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*", - "t": "meta.java.comment.block.class.body", + "t": "block.body.class.comment.java.meta", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t * @param args", - "t": "meta.java.comment.block.class.body", + "t": "block.body.class.comment.java.meta", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t ", - "t": "meta.java.comment.block.class.body", + "t": "block.body.class.comment.java.meta", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "meta.java.punctuation.comment.block.definition.class.body", + "t": "block.body.class.comment.definition.java.meta.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "meta.java.storage.modifier.class.body.method", + "t": "body.class.java.meta.method.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", - "t": "meta.java.storage.class.type.body.method.return-type.primitive.array", + "t": "array.body.class.java.meta.method.primitive.return-type.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method.return-type", + "t": "body.class.java.meta.method.return-type", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "doSomething", - "t": "meta.java.class.identifier.entity.name.body.method.function", + "t": "body.class.entity.function.identifier.java.meta.method.name", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.java.storage.class.identifier.type.body.method.primitive.array", + "t": "array.body.class.identifier.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "meta.java.class.identifier.body.method.variable.parameter", + "t": "body.class.identifier.java.meta.method.parameter.variable", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.java.punctuation.class.body.section.begin.method", + "t": "begin.body.class.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "double", - "t": "meta.java.storage.class.type.body.method.primitive.array", + "t": "array.body.class.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " b ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.method.operator.assignment", + "t": "assignment.body.class.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0.0", - "t": "meta.java.class.body.method.constant.numeric.float", + "t": "body.class.constant.float.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "double", - "t": "meta.java.storage.class.type.body.method.primitive.array", + "t": "array.body.class.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " c ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.method.operator.assignment", + "t": "assignment.body.class.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10e3", - "t": "meta.java.class.body.method.constant.numeric.float", + "t": "body.class.constant.float.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "long", - "t": "meta.java.storage.class.type.body.method.primitive.array", + "t": "array.body.class.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " l ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.method.operator.assignment", + "t": "assignment.body.class.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "134l", - "t": "meta.java.class.body.method.constant.numeric.integer", + "t": "body.class.constant.integer.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.java.punctuation.class.body.section.method.end", + "t": "body.class.end.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/*", - "t": "meta.java.punctuation.comment.block.definition.class.body", + "t": "block.body.class.comment.definition.java.meta.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t * multiline comment", - "t": "meta.java.comment.block.class.body", + "t": "block.body.class.comment.java.meta", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t ", - "t": "meta.java.comment.block.class.body", + "t": "block.body.class.comment.java.meta", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "meta.java.punctuation.comment.block.definition.class.body", + "t": "block.body.class.comment.definition.java.meta.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@SuppressWarnings", - "t": "meta.java.storage.class.type.body.declaration.annotation", + "t": "annotation.body.class.declaration.java.meta.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "(", - "t": "meta.java.punctuation.definition.class.body.begin.declaration.annotation.annotation-arguments", + "t": "annotation.annotation-arguments.begin.body.class.declaration.definition.java.meta.punctuation", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "value", - "t": "meta.java.other.class.body.constant.declaration.annotation.key", + "t": "annotation.body.class.constant.declaration.java.key.meta.other", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.java.class.body.declaration.annotation", + "t": "annotation.body.class.declaration.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.operator.assignment.declaration.annotation", + "t": "annotation.assignment.body.class.declaration.java.keyword.meta.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.declaration.annotation", + "t": "annotation.body.class.declaration.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.java.punctuation.definition.class.body.begin.declaration.annotation.string.quoted.double", + "t": "annotation.begin.body.class.declaration.definition.double.java.meta.punctuation.quoted.string", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "aString", - "t": "meta.java.class.body.declaration.annotation.string.quoted.double", + "t": "annotation.body.class.declaration.double.java.meta.quoted.string", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.java.punctuation.definition.class.body.end.declaration.annotation.string.quoted.double", + "t": "annotation.body.class.declaration.definition.double.end.java.meta.punctuation.quoted.string", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.java.punctuation.definition.class.body.end.declaration.annotation.annotation-arguments", + "t": "annotation.annotation-arguments.body.class.declaration.definition.end.java.meta.punctuation", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "meta.java.storage.modifier.class.body.method", + "t": "body.class.java.meta.method.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "long", - "t": "meta.java.storage.class.type.body.method.return-type.primitive.array", + "t": "array.body.class.java.meta.method.primitive.return-type.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method.return-type", + "t": "body.class.java.meta.method.return-type", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "privateMethod", - "t": "meta.java.class.identifier.entity.name.body.method.function", + "t": "body.class.entity.function.identifier.java.meta.method.name", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "long", - "t": "meta.java.storage.class.identifier.type.body.method.primitive.array", + "t": "array.body.class.identifier.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "b", - "t": "meta.java.class.identifier.body.method.variable.parameter", + "t": "body.class.identifier.java.meta.method.parameter.variable", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.java.punctuation.class.body.section.begin.method", + "t": "begin.body.class.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "meta.java.keyword.class.body.method.control", + "t": "body.class.control.java.keyword.meta.method", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " (", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.java.storage.class.type.body.method.primitive.array", + "t": "array.body.class.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " i ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.method.operator.assignment", + "t": "assignment.body.class.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "meta.java.class.body.method.constant.numeric.integer", + "t": "body.class.constant.integer.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " i ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.java.keyword.class.body.method.operator.comparison", + "t": "body.class.comparison.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "9", - "t": "meta.java.class.body.method.constant.numeric.integer", + "t": "body.class.constant.integer.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " i", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "meta.java.keyword.class.body.method.operator.increment-decrement", + "t": "body.class.increment-decrement.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ") ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.java.punctuation.block.class.body.section.begin.method", + "t": "begin.block.body.class.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "System", - "t": "meta.java.storage.class.type.body.method", + "t": "body.class.java.meta.method.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": ".", - "t": "meta.java.keyword.class.body.method.operator.dereference", + "t": "body.class.dereference.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "out", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "meta.java.keyword.class.body.method.operator.dereference", + "t": "body.class.dereference.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "println", - "t": "meta.java.class.body.method.method-call", + "t": "body.class.java.meta.method.method-call", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.java.punctuation.definition.class.body.begin.method.method-call.method-parameters", + "t": "begin.body.class.definition.java.meta.method.method-call.method-parameters.punctuation", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.java.punctuation.definition.class.body.begin.method.string.quoted.double.method-call", + "t": "begin.body.class.definition.double.java.meta.method.method-call.punctuation.quoted.string", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Hello", - "t": "meta.java.class.body.method.string.quoted.double.method-call", + "t": "body.class.double.java.meta.method.method-call.quoted.string", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.java.punctuation.definition.class.body.method.end.string.quoted.double.method-call", + "t": "body.class.definition.double.end.java.meta.method.method-call.punctuation.quoted.string", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "meta.java.class.body.method.method-call", + "t": "body.class.java.meta.method.method-call", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "meta.java.keyword.class.body.method.operator.method-call.arithmetic", + "t": "arithmetic.body.class.java.keyword.meta.method.method-call.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " i", - "t": "meta.java.class.body.method.method-call", + "t": "body.class.java.meta.method.method-call", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.java.punctuation.definition.class.body.method.end.method-call.method-parameters", + "t": "body.class.definition.end.java.meta.method.method-call.method-parameters.punctuation", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.java.punctuation.block.class.body.section.method.end", + "t": "block.body.class.end.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.java.keyword.class.body.method.control", + "t": "body.class.control.java.keyword.meta.method", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "meta.java.class.body.method.constant.numeric.integer", + "t": "body.class.constant.integer.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.java.punctuation.class.body.section.method.end", + "t": "body.class.end.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.punctuation.comment.class.body.whitespace.leading", + "t": "body.class.comment.java.leading.meta.punctuation.whitespace", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "//", - "t": "meta.java.punctuation.comment.definition.class.body.line.double-slash", + "t": "body.class.comment.definition.double-slash.java.line.meta.punctuation", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "single line comment", - "t": "meta.java.comment.class.body.line.double-slash", + "t": "body.class.comment.double-slash.java.line.meta", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@Test", - "t": "meta.java.storage.class.type.body.annotation", + "t": "annotation.body.class.java.meta.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "\t", - "t": "meta.java.class.body", + "t": "body.class.java.meta", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "meta.java.storage.modifier.class.body.method", + "t": "body.class.java.meta.method.modifier.storage", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", - "t": "meta.java.storage.class.type.body.method.return-type.primitive.array", + "t": "array.body.class.java.meta.method.primitive.return-type.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method.return-type", + "t": "body.class.java.meta.method.return-type", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "someTests", - "t": "meta.java.class.identifier.entity.name.body.method.function", + "t": "body.class.entity.function.identifier.java.meta.method.name", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.java.class.identifier.body.method", + "t": "body.class.identifier.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.java.punctuation.class.body.section.begin.method", + "t": "begin.body.class.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.java.storage.class.type.body.method.primitive.array", + "t": "array.body.class.java.meta.method.primitive.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " hex ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.method.operator.assignment", + "t": "assignment.body.class.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0x5", - "t": "meta.java.class.body.method.constant.numeric.hex", + "t": "body.class.constant.hex.java.meta.method.numeric", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Vector", - "t": "meta.java.storage.class.type.body.method.generic", + "t": "body.class.generic.java.meta.method.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " v ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.java.keyword.class.body.method.operator.assignment", + "t": "assignment.body.class.java.keyword.meta.method.operator", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "meta.java.keyword.class.body.method.control.new", + "t": "body.class.control.java.keyword.meta.method.new", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Vector", - "t": "meta.java.storage.class.type.body.method", + "t": "body.class.java.meta.method.storage.type", "r": { - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type", - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type.java rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type.java rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "()", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.java.punctuation.terminator.class.body.method", + "t": "body.class.java.meta.method.punctuation.terminator", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.java.class.body.method", + "t": "body.class.java.meta.method", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.java.punctuation.class.body.section.method.end", + "t": "body.class.end.java.meta.method.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.java.punctuation.class.section.end", + "t": "class.end.java.meta.punctuation.section", "r": { - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token", - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/javascript/test/colorize-results/test_js.json b/extensions/javascript/test/colorize-results/test_js.json index 8392124673b..021ce7b0a8e 100644 --- a/extensions/javascript/test/colorize-results/test_js.json +++ b/extensions/javascript/test/colorize-results/test_js.json @@ -1,2389 +1,2389 @@ [ { "c": "/*---------------------------------------------------------------------------------------------", - "t": "js.block.comment", + "t": "block.comment.js", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * Copyright (c) Microsoft Corporation. All rights reserved.", - "t": "js.block.comment", + "t": "block.comment.js", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * Licensed under the MIT License. See License.txt in the project root for license information.", - "t": "js.block.comment", + "t": "block.comment.js", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " *--------------------------------------------------------------------------------------------*/", - "t": "js.block.comment", + "t": "block.comment.js", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "var", - "t": "meta.js.storage.type.var.expr", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.var.expr", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gulp", - "t": "meta.js.var.expr.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = require", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'gulp'", - "t": "meta.js.string.single.var.expr.var-single-variable", + "t": "expr.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.storage.type.var.expr", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.var.expr", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "tsb", - "t": "meta.js.var.expr.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = require", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'gulp-tsb'", - "t": "meta.js.string.single.var.expr.var-single-variable", + "t": "expr.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.storage.type.var.expr", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.var.expr", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "util", - "t": "meta.js.var.expr.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = require", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'./lib/util'", - "t": "meta.js.string.single.var.expr.var-single-variable", + "t": "expr.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.storage.type.var.expr", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.var.expr", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "watcher", - "t": "meta.js.var.expr.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = require", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'./lib/watch'", - "t": "meta.js.string.single.var.expr.var-single-variable", + "t": "expr.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.storage.type.var.expr", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.var.expr", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "assign", - "t": "meta.js.var.expr.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = require", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'object-assign'", - "t": "meta.js.string.single.var.expr.var-single-variable", + "t": "expr.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.storage.type.var.expr", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.var.expr", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "compilation", - "t": "meta.js.var.expr.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = tsb.create", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "assign", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.var.expr.var-single-variable", + "t": "block.brace.curly.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.var.expr.var-single-variable", + "t": "block.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "verbose: ", - "t": "meta.js.block.object.member.var.expr.var-single-variable", + "t": "block.expr.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "meta.js.block.object.member.var.expr.var-single-variable.constant.language.boolean", + "t": "block.boolean.constant.expr.js.language.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.block.object.member.var.expr.var-single-variable", + "t": "block.expr.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.var.expr.var-single-variable", + "t": "block.brace.curly.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", require", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'./tsconfig.json'", - "t": "meta.js.string.single.var.expr.var-single-variable", + "t": "expr.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".compilerOptions", - "t": "meta.js.var.expr.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "meta.brace.paren.js.var.expr.var-single-variable", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gulp.task", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'compile'", - "t": "js.string.single", + "t": "js.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.js.function.storage.type", + "t": "function.js.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "()", - "t": "meta.brace.js.function.type.parameter.round", + "t": "brace.function.js.meta.parameter.round.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.function", + "t": "function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.js.block.function.decl.keyword.control", + "t": "block.control.decl.function.js.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " gulp.src", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'**/*.ts'", - "t": "meta.js.string.single.block.function.decl", + "t": "block.decl.function.js.meta.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "base: ", - "t": "meta.js.block.object.member.function.decl", + "t": "block.decl.function.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'.'", - "t": "meta.js.string.single.block.object.member.function.decl", + "t": "block.decl.function.js.member.meta.object.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "meta.js.block.object.member.function.decl", + "t": "block.decl.function.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t.pipe", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "compilation", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "())", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t.pipe", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gulp.dest", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "''", - "t": "meta.js.string.single.block.function.decl", + "t": "block.decl.function.js.meta.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "))", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gulp.task", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'watch'", - "t": "js.string.single", + "t": "js.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.js.function.storage.type", + "t": "function.js.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "()", - "t": "meta.brace.js.function.type.parameter.round", + "t": "brace.function.js.meta.parameter.round.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.function", + "t": "function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.js.block.function.decl.var.expr", + "t": "block.decl.expr.function.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.block.function.storage.type.decl.var.expr", + "t": "block.decl.expr.function.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.block.function.decl.var.expr", + "t": "block.decl.expr.function.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "src", - "t": "meta.js.block.function.decl.var.expr.var-single-variable.variable", + "t": "block.decl.expr.function.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = gulp.src", - "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl.var.expr.var-single-variable", + "t": "block.brace.decl.expr.function.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'**/*.ts'", - "t": "meta.js.string.single.block.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.meta.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl.var.expr.var-single-variable", + "t": "block.brace.curly.decl.expr.function.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "base: ", - "t": "meta.js.block.object.member.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'.'", - "t": "meta.js.string.single.block.object.member.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.member.meta.object.single.string.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "meta.js.block.object.member.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl.var.expr.var-single-variable", + "t": "block.brace.curly.decl.expr.function.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js.block.function.decl.var.expr.var-single-variable", + "t": "block.brace.decl.expr.function.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.js.block.function.decl.keyword.control", + "t": "block.control.decl.function.js.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " watcher", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'**/*.ts'", - "t": "meta.js.string.single.block.function.decl", + "t": "block.decl.function.js.meta.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "base: ", - "t": "meta.js.block.object.member.function.decl", + "t": "block.decl.function.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'.'", - "t": "meta.js.string.single.block.object.member.function.decl", + "t": "block.decl.function.js.member.meta.object.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "meta.js.block.object.member.function.decl", + "t": "block.decl.function.js.member.meta.object", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t.pipe", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "util.incremental", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "compilation, src", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t.pipe", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gulp.dest", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "''", - "t": "meta.js.string.single.block.function.decl", + "t": "block.decl.function.js.meta.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "))", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gulp.task", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'default'", - "t": "js.string.single", + "t": "js.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "meta.brace.js.array.literal.square", + "t": "array.brace.js.literal.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'compile'", - "t": "meta.js.string.single.array.literal", + "t": "array.js.literal.meta.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", - "t": "meta.brace.js.array.literal.square", + "t": "array.brace.js.literal.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.js.function.storage.type", + "t": "function.js.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.function", + "t": "function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cloneArray", - "t": "meta.js.function.entity.name", + "t": "entity.function.js.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.js.function.type.parameter.round", + "t": "brace.function.js.meta.parameter.round.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arr", - "t": "meta.js.function.type.parameter.variable.name", + "t": "function.js.meta.name.parameter.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.js.function.type.parameter.round", + "t": "brace.function.js.meta.parameter.round.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.function", + "t": "function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " _.foo", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl.var.expr", + "t": "block.decl.expr.function.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.block.function.storage.type.decl.var.expr", + "t": "block.decl.expr.function.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.block.function.decl.var.expr", + "t": "block.decl.expr.function.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "r", - "t": "meta.js.block.function.decl.var.expr.var-single-variable.variable", + "t": "block.decl.expr.function.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "meta.js.block.function.decl.var.expr.var-single-variable", + "t": "block.decl.expr.function.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[]", - "t": "meta.brace.js.block.function.decl.var.expr.var-single-variable.array.literal.square", + "t": "array.block.brace.decl.expr.function.js.literal.meta.square.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "meta.js.block.function.decl.keyword.control", + "t": "block.control.decl.function.js.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.js.block.function.storage.type.decl", + "t": "block.decl.function.js.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " i ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.js.block.function.decl.keyword.operator.comparison", + "t": "block.comparison.decl.function.js.keyword.meta.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "meta.js.block.function.decl.constant.numeric", + "t": "block.constant.decl.function.js.meta.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ", len ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.js.block.function.decl.keyword.operator.comparison", + "t": "block.comparison.decl.function.js.keyword.meta.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " arr.length; i ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.js.block.function.decl.keyword.operator.comparison", + "t": "block.comparison.decl.function.js.keyword.meta.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " len; i", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "meta.js.block.function.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.decl.function.js.keyword.meta.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " r", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "meta.brace.js.block.function.decl.array.literal.square", + "t": "array.block.brace.decl.function.js.literal.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "i", - "t": "meta.js.block.function.decl.array.literal", + "t": "array.block.decl.function.js.literal.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "meta.brace.js.block.function.decl.array.literal.square", + "t": "array.block.brace.decl.function.js.literal.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.js.block.function.decl.keyword.operator.comparison", + "t": "block.comparison.decl.function.js.keyword.meta.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " doClone", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "arr", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "meta.brace.js.block.function.decl.array.literal.square", + "t": "array.block.brace.decl.function.js.literal.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "i", - "t": "meta.js.block.function.decl.array.literal", + "t": "array.block.decl.function.js.literal.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "meta.brace.js.block.function.decl.array.literal.square", + "t": "array.block.brace.decl.function.js.literal.meta.square", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.brace.paren.js.block.function.decl", + "t": "block.brace.decl.function.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.js.block.function.decl.keyword.control", + "t": "block.control.decl.function.js.keyword.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " r;", - "t": "meta.js.block.function.decl", + "t": "block.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.brace.js.block.curly.function.decl", + "t": "block.brace.curly.decl.function.js.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/javascript/test/colorize-results/test_jsx.json b/extensions/javascript/test/colorize-results/test_jsx.json index 2bdea6c9fbd..947872db008 100644 --- a/extensions/javascript/test/colorize-results/test_jsx.json +++ b/extensions/javascript/test/colorize-results/test_jsx.json @@ -1,1806 +1,1806 @@ [ { "c": "var", - "t": "meta.var.expr.js.storage.type", + "t": "expr.js.meta.storage.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js", + "t": "expr.js.meta.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ToggleText", - "t": "meta.var.expr.js.var-single-variable.variable", + "t": "expr.js.meta.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = React.createClass", - "t": "meta.var.expr.js.var-single-variable", + "t": "expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.var.expr.js.var-single-variable.brace.paren", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly", + "t": "block.brace.curly.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block", + "t": "block.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "getInitialState: ", - "t": "meta.var.expr.js.var-single-variable.block.object.member", + "t": "block.expr.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.storage.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "t": "block.brace.expr.function.js.member.meta.object.parameter.round.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control", + "t": "block.control.decl.expr.function.js.keyword.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " showDefault: ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.boolean", + "t": "block.boolean.constant.decl.expr.function.js.language.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "meta.var.expr.js.var-single-variable.block", + "t": "block.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block", + "t": "block.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "toggle: ", - "t": "meta.var.expr.js.var-single-variable.block.object.member", + "t": "block.expr.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.storage.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "t": "block.brace.expr.function.js.member.meta.object.parameter.round.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "e", - "t": "meta.var.expr.js.type.var-single-variable.variable.block.object.member.function.parameter.name", + "t": "block.expr.function.js.member.meta.name.object.parameter.type.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "t": "block.brace.expr.function.js.member.meta.object.parameter.round.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// Prevent following the link.", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "t": "block.comment.decl.expr.function.js.line.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " e.preventDefault", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// Invert the chosen default.", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "t": "block.comment.decl.expr.function.js.line.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// This will trigger an intelligent re-render of the component.", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "t": "block.comment.decl.expr.function.js.line.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "t": "block.constant.decl.expr.function.js.language.member.meta.object.this.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".setState", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " showDefault: ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "!", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.decl.expr.function.js.keyword.member.meta.object.operator.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "this", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "t": "block.constant.decl.expr.function.js.language.member.meta.object.this.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".state.showDefault ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "meta.var.expr.js.var-single-variable.block", + "t": "block.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block", + "t": "block.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "render: ", - "t": "meta.var.expr.js.var-single-variable.block.object.member", + "t": "block.expr.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.storage.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "meta.var.expr.js.type.var-single-variable.brace.block.object.member.function.parameter.round", + "t": "block.brace.expr.function.js.member.meta.object.parameter.round.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function", + "t": "block.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// Default to the default message.", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "t": "block.comment.decl.expr.function.js.line.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "meta.var.expr.js.storage.type.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.storage.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "message", - "t": "meta.var.expr.js.var-single-variable.variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "t": "block.constant.decl.expr.function.js.language.member.meta.object.this.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".props.default;", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// If toggled, show the alternate message.", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.comment.line", + "t": "block.comment.decl.expr.function.js.line.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control", + "t": "block.control.decl.expr.function.js.keyword.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "!", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.decl.expr.function.js.keyword.member.meta.object.operator.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "this", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "t": "block.constant.decl.expr.function.js.language.member.meta.object.this.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".state.showDefault", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " message ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.comparison", + "t": "block.comparison.decl.expr.function.js.keyword.member.meta.object.operator.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.constant.language.this", + "t": "block.constant.decl.expr.function.js.language.member.meta.object.this.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".props.alt;", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.control", + "t": "block.control.decl.expr.function.js.keyword.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin", + "t": "begin.block.decl.definition.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity", + "t": "block.decl.entity.expr.function.js.member.meta.name.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "t": "block.decl.definition.end.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "t": "block.decl.expr.function.js.member.meta.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin", + "t": "begin.block.decl.definition.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h1", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity", + "t": "block.decl.entity.expr.function.js.member.meta.name.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "t": "block.decl.definition.end.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Hello ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "t": "block.decl.expr.function.js.member.meta.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.start", + "t": "block.brace.curly.decl.definition.expr.function.js.member.meta.object.punctuation.start.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "message", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "t": "block.brace.curly.decl.definition.end.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "!", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "t": "block.decl.expr.function.js.member.meta.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "t": "block.decl.definition.end.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "t": "block.decl.expr.function.js.member.meta.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin.open", + "t": "begin.block.decl.definition.expr.function.js.member.meta.object.open.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "a", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.name.tag.without-attributes.entity.open", + "t": "block.decl.entity.expr.function.js.member.meta.name.object.open.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.open.attribute-name", + "t": "attribute-name.block.decl.expr.function.js.member.meta.object.open.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "href", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.entity.open.attribute-name.other", + "t": "attribute-name.block.decl.entity.expr.function.js.member.meta.object.open.other.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.tag.without-attributes.open.assignment", + "t": "assignment.block.decl.expr.function.js.keyword.member.meta.object.open.operator.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.begin.open.string.quoted.double", + "t": "begin.block.decl.definition.double.expr.function.js.member.meta.object.open.punctuation.quoted.string.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open.string.quoted.double", + "t": "block.decl.definition.double.end.expr.function.js.member.meta.object.open.punctuation.quoted.string.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.open.attribute-name", + "t": "attribute-name.block.decl.expr.function.js.member.meta.object.open.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "onClick", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.entity.open.attribute-name.other", + "t": "attribute-name.block.decl.entity.expr.function.js.member.meta.object.open.other.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.keyword.operator.tag.without-attributes.open.assignment", + "t": "assignment.block.decl.expr.function.js.keyword.member.meta.object.open.operator.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "{", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.start.open", + "t": "block.brace.curly.decl.definition.expr.function.js.member.meta.object.open.punctuation.start.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "this", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.constant.language.this.tag.without-attributes.open", + "t": "block.brace.constant.curly.decl.expr.function.js.language.member.meta.object.open.tag.this.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ".toggle", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.open", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.open.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open", + "t": "block.brace.curly.decl.definition.end.expr.function.js.member.meta.object.open.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ">", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end.open", + "t": "block.decl.definition.end.expr.function.js.member.meta.object.open.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Toggle", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes", + "t": "block.decl.expr.function.js.member.meta.object.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.without-attributes.punctuation.definition.end", + "t": "block.decl.definition.end.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable.without-attributes", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl.tag.punctuation.definition.end.close", + "t": "block.close.decl.definition.end.expr.function.js.member.meta.object.punctuation.tag.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.var.expr.js.var-single-variable.brace.paren.block.object.member.function.decl", + "t": "block.brace.decl.expr.function.js.member.meta.object.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.var.expr.js.var-single-variable.block.object.member.function.decl", + "t": "block.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly.object.member.function.decl", + "t": "block.brace.curly.decl.expr.function.js.member.meta.object.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.var.expr.js.var-single-variable.brace.block.curly", + "t": "block.brace.curly.expr.js.meta.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.var.expr.js.var-single-variable.brace.paren", + "t": "brace.expr.js.meta.paren.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "React.render", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "meta.js.brace.paren", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "js.tag.punctuation.definition.begin.open", + "t": "begin.definition.js.open.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ToggleText", - "t": "js.name.tag.entity.open", + "t": "entity.js.name.open.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.js.tag.open.attribute-name", + "t": "attribute-name.js.meta.open.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "default", - "t": "meta.js.tag.entity.open.attribute-name.other", + "t": "attribute-name.entity.js.meta.open.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "js.keyword.operator.tag.open.assignment", + "t": "assignment.js.keyword.open.operator.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"", - "t": "js.tag.punctuation.definition.begin.open.string.quoted.double", + "t": "begin.definition.double.js.open.punctuation.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "World", - "t": "js.tag.open.string.quoted.double", + "t": "double.js.open.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "js.tag.punctuation.definition.end.open.string.quoted.double", + "t": "definition.double.end.js.open.punctuation.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", - "t": "meta.js.tag.open.attribute-name", + "t": "attribute-name.js.meta.open.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "alt", - "t": "meta.js.tag.entity.open.attribute-name.other", + "t": "attribute-name.entity.js.meta.open.other.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "js.keyword.operator.tag.open.assignment", + "t": "assignment.js.keyword.open.operator.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"", - "t": "js.tag.punctuation.definition.begin.open.string.quoted.double", + "t": "begin.definition.double.js.open.punctuation.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "Mars", - "t": "js.tag.open.string.quoted.double", + "t": "double.js.open.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "js.tag.punctuation.definition.end.open.string.quoted.double", + "t": "definition.double.end.js.open.punctuation.quoted.string.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", - "t": "js.tag.open", + "t": "js.open.tag", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/>", - "t": "js.tag.punctuation.definition.end.open", + "t": "definition.end.js.open.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.punctuation.tag.js rgb(128, 128, 128)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", document.body", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "meta.js.brace.paren", + "t": "brace.js.meta.paren", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/json/test/colorize-results/test_json.json b/extensions/json/test/colorize-results/test_json.json index 196805c556a..cdc2225a799 100644 --- a/extensions/json/test/colorize-results/test_json.json +++ b/extensions/json/test/colorize-results/test_json.json @@ -1,1157 +1,1157 @@ [ { "c": "{", - "t": "meta.structure.dictionary.json.punctuation.definition.begin", + "t": "begin.definition.dictionary.json.meta.punctuation.structure", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.structure.dictionary.json", + "t": "dictionary.json.meta.structure", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "//", - "t": "meta.structure.dictionary.json.punctuation.definition.comment.line.double-slash.js", + "t": "comment.definition.dictionary.double-slash.js.json.line.meta.punctuation.structure", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " a comment", - "t": "meta.structure.dictionary.json.comment.line.double-slash.js", + "t": "comment.dictionary.double-slash.js.json.line.meta.structure", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "meta.structure.dictionary.json", + "t": "dictionary.json.meta.structure", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "options", - "t": "meta.structure.dictionary.json.support.type.property-name", + "t": "dictionary.json.meta.property-name.structure.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value", + "t": "begin.definition.dictionary.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myBool", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "meta.structure.dictionary.json.value.constant.language", + "t": "constant.dictionary.json.language.meta.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "t": "dictionary.json.meta.pair.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myInteger", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "meta.structure.dictionary.json.value.constant.numeric", + "t": "constant.dictionary.json.meta.numeric.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "t": "dictionary.json.meta.pair.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myString", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.string.quoted.double", + "t": "begin.definition.dictionary.double.json.meta.punctuation.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "String", - "t": "meta.structure.dictionary.json.value.string.quoted.double", + "t": "dictionary.double.json.meta.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "\\u0056", - "t": "meta.structure.dictionary.json.value.constant.string.quoted.double.character.escape", + "t": "character.constant.dictionary.double.escape.json.meta.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value.string.quoted.double", + "t": "definition.dictionary.double.end.json.meta.punctuation.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "t": "dictionary.json.meta.pair.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myNumber", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1.24", - "t": "meta.structure.dictionary.json.value.constant.numeric", + "t": "constant.dictionary.json.meta.numeric.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "t": "dictionary.json.meta.pair.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myNull", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "null", - "t": "meta.structure.dictionary.json.value.constant.language", + "t": "constant.dictionary.json.language.meta.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "t": "dictionary.json.meta.pair.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myArray", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.array", + "t": "array.begin.definition.dictionary.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value.array", + "t": "array.dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "meta.structure.dictionary.json.value.constant.numeric.array", + "t": "array.constant.dictionary.json.meta.numeric.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "t": "array.dictionary.json.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value.array", + "t": "array.dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.string.quoted.double.array", + "t": "array.begin.definition.dictionary.double.json.meta.punctuation.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "Hello", - "t": "meta.structure.dictionary.json.value.string.quoted.double.array", + "t": "array.dictionary.double.json.meta.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value.string.quoted.double.array", + "t": "array.definition.dictionary.double.end.json.meta.punctuation.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "t": "array.dictionary.json.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value.array", + "t": "array.dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "meta.structure.dictionary.json.value.constant.language.array", + "t": "array.constant.dictionary.json.language.meta.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "t": "array.dictionary.json.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value.array", + "t": "array.dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "null", - "t": "meta.structure.dictionary.json.value.constant.language.array", + "t": "array.constant.dictionary.json.language.meta.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "t": "array.dictionary.json.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value.array", + "t": "array.dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.array", + "t": "array.begin.definition.dictionary.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value.array", + "t": "array.definition.dictionary.end.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.array", + "t": "array.dictionary.json.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value.array", + "t": "array.dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.array", + "t": "array.begin.definition.dictionary.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}]", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value.array", + "t": "array.definition.dictionary.end.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "meta.structure.dictionary.json.punctuation.value.separator.pair", + "t": "dictionary.json.meta.pair.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "myObject", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value", + "t": "begin.definition.dictionary.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.begin.support.type.property-name.value", + "t": "begin.dictionary.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "foo", - "t": "meta.structure.dictionary.json.support.type.property-name.value", + "t": "dictionary.json.meta.property-name.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.support.type.property-name.end.value", + "t": "dictionary.end.json.meta.property-name.punctuation.structure.support.type.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", - "t": "meta.structure.dictionary.json.punctuation.value.separator.key-value", + "t": "dictionary.json.key-value.meta.punctuation.separator.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.definition.begin.value.string.quoted.double", + "t": "begin.definition.dictionary.double.json.meta.punctuation.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "bar", - "t": "meta.structure.dictionary.json.value.string.quoted.double", + "t": "dictionary.double.json.meta.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value.string.quoted.double", + "t": "definition.dictionary.double.end.json.meta.punctuation.quoted.string.structure.value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.value rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.value rgb(206, 145, 120)" } }, { "c": "\t\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value", + "t": "definition.dictionary.end.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.structure.dictionary.json.value", + "t": "dictionary.json.meta.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.structure.dictionary.json.punctuation.definition.end.value", + "t": "definition.dictionary.end.json.meta.punctuation.structure.value", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "meta.structure.dictionary.json.punctuation.definition.end", + "t": "definition.dictionary.end.json.meta.punctuation.structure", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/less/test/colorize-results/test_less.json b/extensions/less/test/colorize-results/test_less.json index 365fa2f205e..ed68bec3f3b 100644 --- a/extensions/less/test/colorize-results/test_less.json +++ b/extensions/less/test/colorize-results/test_less.json @@ -1,2499 +1,2499 @@ [ { "c": "@base", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#f938ab", - "t": "other.constant.rgb-value.css", + "t": "constant.css.other.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".box-shadow", - "t": "other.css.entity.attribute-name.class", + "t": "attribute-name.class.css.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@style", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@c", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " when ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "iscolor", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@c", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-radius", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@style", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@c", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".box-shadow", - "t": "other.css.entity.attribute-name.class", + "t": "attribute-name.class.css.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@style", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@alpha", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 50", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " when ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "isnumber", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@alpha", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".box-shadow", - "t": "other.css.entity.attribute-name.class", + "t": "attribute-name.class.css.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@style", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "rgba", - "t": "css.support.function.any-method.builtin", + "t": "any-method.builtin.css.function.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 0", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 0", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@alpha", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".box", - "t": "other.css.entity.attribute-name.class", + "t": "attribute-name.class.css.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "saturate", - "t": "less.support.function.any-method.builtin", + "t": "any-method.builtin.function.less.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@base", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 5", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-color", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "lighten", - "t": "less.support.function.any-method.builtin", + "t": "any-method.builtin.function.less.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@base", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 30", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "div", - "t": "keyword.control.html.elements", + "t": "control.elements.html.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".box-shadow", - "t": "other.css.entity.attribute-name.class", + "t": "attribute-name.class.css.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": "((", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0 0 5", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 30", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#header", - "t": "other.css.entity.attribute-name.meta.selector.id", + "t": "attribute-name.css.entity.id.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "h1", - "t": "keyword.control.html.elements", + "t": "control.elements.html.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-size", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 26", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-weight", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "constant.css.support.property-value", + "t": "constant.css.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p", - "t": "keyword.control.html.elements", + "t": "control.elements.html.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-size", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 12", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "keyword.control.html.elements", + "t": "control.elements.html.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "text-decoration", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "none", - "t": "constant.css.support.property-value", + "t": "constant.css.property-value.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "&", - "t": "less.keyword.operator", + "t": "keyword.less.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ":hover", - "t": "other.css.entity.attribute-name.pseudo-class", + "t": "attribute-name.css.entity.other.pseudo-class", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-width", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ":", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 1", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@the-border", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 1", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "px", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@base-color", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#111", - "t": "other.constant.rgb-value.css", + "t": "constant.css.other.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@red", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#842210", - "t": "other.constant.rgb-value.css", + "t": "constant.css.other.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#header", - "t": "other.css.entity.attribute-name.meta.selector.id", + "t": "attribute-name.css.entity.id.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@base-color", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "less.keyword.operator", + "t": "keyword.less.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " 3", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-left", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@the-border", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-right", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@the-border", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "less.keyword.operator", + "t": "keyword.less.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " 2", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#footer", - "t": "other.css.entity.attribute-name.meta.selector.id", + "t": "attribute-name.css.entity.id.meta.other.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name.css rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name.css rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name.css rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@base-color", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "less.keyword.operator", + "t": "keyword.less.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#003300", - "t": "other.constant.rgb-value.css", + "t": "constant.css.other.rgb-value", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-color", - "t": "css.support.type.property-name", + "t": "css.property-name.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.css rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.css rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "desaturate", - "t": "less.support.function.any-method.builtin", + "t": "any-method.builtin.function.less.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@red", - "t": "variable.other.less", + "t": "less.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " 10", "t": "constant.css.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "%", - "t": "other.css.keyword.unit", + "t": "css.keyword.other.unit", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.other.unit rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.other.unit rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.other.unit rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.other.unit rgb(181, 206, 168)" } }, { "c": ")", - "t": "less.meta.brace.round", + "t": "brace.less.meta.round", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "less.meta.brace.curly", + "t": "brace.curly.less.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/lua/test/colorize-results/test_lua.json b/extensions/lua/test/colorize-results/test_lua.json index 20f9a4943c9..685d12d6e0e 100644 --- a/extensions/lua/test/colorize-results/test_lua.json +++ b/extensions/lua/test/colorize-results/test_lua.json @@ -1,684 +1,684 @@ [ { "c": " ", - "t": "punctuation.whitespace.comment.leading.lua", + "t": "comment.leading.lua.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "--", - "t": "punctuation.comment.lua.line.double-dash.definition", + "t": "comment.definition.double-dash.line.lua.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " defines a factorial function", - "t": "comment.lua.line.double-dash", + "t": "comment.double-dash.line.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "lua.meta.function.keyword.control", + "t": "control.function.keyword.lua.meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "lua.meta.function", + "t": "function.lua.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fact", - "t": "lua.meta.function.entity.name", + "t": "entity.function.lua.meta.name", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "lua.meta.function", + "t": "function.lua.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.lua.definition.meta.function.parameters.begin", + "t": "begin.definition.function.lua.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "n", - "t": "lua.meta.function.variable.parameter", + "t": "function.lua.meta.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.lua.definition.meta.function.parameters.end", + "t": "definition.end.function.lua.meta.parameters.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " n ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "lua.keyword.operator", + "t": "keyword.lua.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "lua.constant.numeric", + "t": "constant.lua.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "then", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "lua.constant.numeric", + "t": "constant.lua.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " n ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "lua.keyword.operator", + "t": "keyword.lua.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fact", - "t": "lua.function.support.any-method", + "t": "any-method.function.lua.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(n", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "lua.keyword.operator", + "t": "keyword.lua.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "1", - "t": "lua.constant.numeric", + "t": "constant.lua.numeric", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "lua.keyword.control", + "t": "control.keyword.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", - "t": "lua.function.support", + "t": "function.lua.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "punctuation.lua.definition.begin.string.quoted.double", + "t": "begin.definition.double.lua.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "enter a number:", - "t": "lua.string.quoted.double", + "t": "double.lua.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "punctuation.lua.definition.end.string.quoted.double", + "t": "definition.double.end.lua.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " a ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "lua.keyword.operator", + "t": "keyword.lua.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "io.read", - "t": "lua.function.support.library", + "t": "function.library.lua.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "punctuation.lua.definition.begin.string.quoted.double", + "t": "begin.definition.double.lua.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "*number", - "t": "lua.string.quoted.double", + "t": "double.lua.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "punctuation.lua.definition.end.string.quoted.double", + "t": "definition.double.end.lua.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ") ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "--", - "t": "punctuation.comment.lua.line.double-dash.definition", + "t": "comment.definition.double-dash.line.lua.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " read a number", - "t": "comment.lua.line.double-dash", + "t": "comment.double-dash.line.lua", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", - "t": "lua.function.support", + "t": "function.lua.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fact", - "t": "lua.function.support.any-method", + "t": "any-method.function.lua.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(a))", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/make/test/colorize-results/makefile.json b/extensions/make/test/colorize-results/makefile.json index 21c56844ddc..72f995194c1 100644 --- a/extensions/make/test/colorize-results/makefile.json +++ b/extensions/make/test/colorize-results/makefile.json @@ -1,244 +1,244 @@ [ { "c": "all", - "t": "meta.scope.target.makefile.entity.name.function", + "t": "entity.function.makefile.meta.name.scope.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "t": "key-value.makefile.meta.punctuation.scope.separator.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " hello", - "t": "meta.scope.target.makefile.prerequisites", + "t": "makefile.meta.prerequisites.scope.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "hello", - "t": "meta.scope.target.makefile.entity.name.function", + "t": "entity.function.makefile.meta.name.scope.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "t": "key-value.makefile.meta.punctuation.scope.separator.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " main.o factorial.o hello.o", - "t": "meta.scope.target.makefile.prerequisites", + "t": "makefile.meta.prerequisites.scope.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " g++ main.o factorial.o hello.o -o hello", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "main.o", - "t": "meta.scope.target.makefile.entity.name.function", + "t": "entity.function.makefile.meta.name.scope.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "t": "key-value.makefile.meta.punctuation.scope.separator.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " main.cpp", - "t": "meta.scope.target.makefile.prerequisites", + "t": "makefile.meta.prerequisites.scope.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " g++ -c main.cpp", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "factorial.o", - "t": "meta.scope.target.makefile.entity.name.function", + "t": "entity.function.makefile.meta.name.scope.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "t": "key-value.makefile.meta.punctuation.scope.separator.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " factorial.cpp", - "t": "meta.scope.target.makefile.prerequisites", + "t": "makefile.meta.prerequisites.scope.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " g++ -c factorial.cpp", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "hello.o", - "t": "meta.scope.target.makefile.entity.name.function", + "t": "entity.function.makefile.meta.name.scope.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "t": "key-value.makefile.meta.punctuation.scope.separator.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " hello.cpp", - "t": "meta.scope.target.makefile.prerequisites", + "t": "makefile.meta.prerequisites.scope.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " g++ -c hello.cpp", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "clean", - "t": "meta.scope.target.makefile.entity.name.function", + "t": "entity.function.makefile.meta.name.scope.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "meta.scope.target.makefile.punctuation.separator.key-value", + "t": "key-value.makefile.meta.punctuation.scope.separator.target", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " rm *o hello", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/markdown/test/colorize-results/test_md.json b/extensions/markdown/test/colorize-results/test_md.json index 695b4dca669..c8d5f75d606 100644 --- a/extensions/markdown/test/colorize-results/test_md.json +++ b/extensions/markdown/test/colorize-results/test_md.json @@ -1,1663 +1,1663 @@ [ { "c": "# Header 1 #", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "## Header 2 ##", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "### Header 3 ###", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " (Hashes on right are optional)", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "## Markdown plus h2 with a custom ID ##", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{#id-goes-here}", - "t": "string.target.md", + "t": "md.string.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "[", - "t": "string.link.md", + "t": "link.md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Link back to H2", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "](#id-goes-here)", - "t": "string.link.md", + "t": "link.md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "", "t": "comment.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "", - "t": "entity.name.tag.tag-div.md", + "t": "entity.md.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "
", - "t": "entity.name.tag.tag-div.md", + "t": "entity.md.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " nested div", - "t": "string.md", + "t": "md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "
", - "t": "entity.name.tag.tag-div.md", + "t": "entity.md.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.tag-script.md", + "t": "entity.md.name.tag.tag-script", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " function( x: int ) { return x*x; }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.tag-script.md", + "t": "entity.md.name.tag.tag-script", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " This is a div ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "_with_", "t": "emphasis.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.emphasis", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.emphasis", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.emphasis", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.emphasis", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.emphasis" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.emphasis rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.emphasis rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.emphasis rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.emphasis rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.emphasis rgb(255, 255, 255)" } }, { "c": " underscores", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " and a & ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.tag-b.md", + "t": "entity.md.name.tag.tag-b", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "bold", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.tag-b.md", + "t": "entity.md.name.tag.tag-b", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " element.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.tag-style.md", + "t": "entity.md.name.tag.tag-style", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "", - "t": "entity.name.tag.tag-div.md", + "t": "entity.md.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "* ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Bullet lists are easy too", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "- ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Another one", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+ ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Another one", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "This is a paragraph, which is text surrounded by", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "whitespace. Paragraphs can be on one", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line (or many), and can drone on for hours.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Now some inline markup like ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "_italics_", "t": "emphasis.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.emphasis", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.emphasis", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.emphasis", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.emphasis", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.emphasis" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.emphasis rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.emphasis rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.emphasis rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.emphasis rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.emphasis rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "**bold**", - "t": "strong.md", + "t": "md.strong", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.strong", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.strong", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.strong", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.strong", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.strong" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.strong rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.strong rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.strong rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.strong rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.strong rgb(255, 255, 255)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "and ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "`code()`", - "t": "variable.md", + "t": "md.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ". Note that underscores", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in_words_are ignored.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "````application/json", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{ value: [\"or with a mime type\"] }", - "t": "string.target.md", + "t": "md.string.target", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "````", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">", "t": "comment.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Blockquotes are like quoted text in email replies", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">>", "t": "comment.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " And, they can be nested", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1. ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "A numbered list", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2. ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Which is numbered", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3. ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "With periods and a space", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "And now some code:", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " // Code is just text indented a bit", - "t": "string.md", + "t": "md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " which(is_easy) to_remember();", - "t": "string.md", + "t": "md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "And a block", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "~~~", - "t": "string.md", + "t": "md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "// Markdown extra adds un-indented code blocks too", - "t": "variable.source.md", + "t": "md.source.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if (this_is_more_code == true && !indented) {", - "t": "variable.source.md", + "t": "md.source.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " // tild wrapped code blocks, also not indented", - "t": "variable.source.md", + "t": "md.source.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "variable.source.md", + "t": "md.source.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "~~~", - "t": "string.md", + "t": "md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Text with", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "two trailing spaces", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(on the right)", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "can be used", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for things like poems", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "### Horizontal rules", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "* * * *", - "t": "meta.separator.md", + "t": "md.meta.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "****", - "t": "meta.separator.md", + "t": "md.meta.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "--------------------------", - "t": "entity.other.attribute-name.md", + "t": "attribute-name.entity.md.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "![", - "t": "string.link.md", + "t": "link.md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "picture alt", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "](/images/photo.jpeg \"Title is optional\")", - "t": "string.link.md", + "t": "link.md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "## Markdown plus tables ##", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "| Header | Header | Right |", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "| ------ | ------ | -----: |", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "| Cell | Cell | $10 |", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "| Cell | Cell | $20 |", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "* ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Outer pipes on tables are optional", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "* ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Colon used for alignment (right versus left)", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "## Markdown plus definition lists ##", - "t": "entity.name.tag.md", + "t": "entity.md.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "Bottled water", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "$ 1.25", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "$ 1.55 (Large)", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Milk", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Pop", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "$ 1.75", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "* ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Multiple definitions and terms are possible", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "* ", "t": "keyword.md", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Definitions can include multiple paragraphs too", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[ABBR]", - "t": "string.link.md", + "t": "link.md.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ": Markdown plus abbreviations (produces an ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.tag-abbr.md", + "t": "entity.md.name.tag.tag-abbr", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " tag)", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/objective-c/test/colorize-results/test_m.json b/extensions/objective-c/test/colorize-results/test_m.json index d53494e56c8..f62947af7ca 100644 --- a/extensions/objective-c/test/colorize-results/test_m.json +++ b/extensions/objective-c/test/colorize-results/test_m.json @@ -1,2422 +1,2422 @@ [ { "c": "//", - "t": "comment.line.double-slash.c++.punctuation.definition", + "t": "c++.comment.definition.double-slash.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "//", - "t": "comment.line.double-slash.c++.punctuation.definition", + "t": "c++.comment.definition.double-slash.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Copyright (c) Microsoft Corporation. All rights reserved.", - "t": "comment.line.double-slash.c++", + "t": "c++.comment.double-slash.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "//", - "t": "comment.line.double-slash.c++.punctuation.definition", + "t": "c++.comment.definition.double-slash.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "meta.preprocessor.c.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "import", - "t": "meta.preprocessor.c.include.keyword.control.import", + "t": "c.control.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.preprocessor.c.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "\"", - "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.double.begin", + "t": "begin.c.definition.double.include.meta.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "UseQuotes.h", - "t": "meta.preprocessor.c.include.string.quoted.double", + "t": "c.double.include.meta.preprocessor.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.double.end", + "t": "c.definition.double.end.include.meta.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "#", - "t": "meta.preprocessor.c.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "import", - "t": "meta.preprocessor.c.include.keyword.control.import", + "t": "c.control.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.preprocessor.c.include", + "t": "c.include.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" } }, { "c": "<", - "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.begin.other.lt-gt", + "t": "begin.c.definition.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "Use/GTLT.h", - "t": "meta.preprocessor.c.include.string.quoted.other.lt-gt", + "t": "c.include.lt-gt.meta.other.preprocessor.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.preprocessor.c.include.string.quoted.end.other.lt-gt", + "t": "c.definition.end.include.lt-gt.meta.other.preprocessor.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor.string rgb(206, 145, 120)" } }, { "c": "/*", - "t": "comment.punctuation.definition.c.begin.block", + "t": "begin.block.c.comment.definition.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\tMulti", - "t": "comment.c.block", + "t": "block.c.comment", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\tLine", - "t": "comment.c.block", + "t": "block.c.comment", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\tComments", - "t": "comment.c.block", + "t": "block.c.comment", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "*/", - "t": "comment.punctuation.definition.c.end.block", + "t": "block.c.comment.definition.end.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@", - "t": "punctuation.definition.meta.implementation.objc.storage.type", + "t": "definition.implementation.meta.objc.punctuation.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "implementation", - "t": "meta.implementation.objc.storage.type", + "t": "implementation.meta.objc.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.implementation.objc", + "t": "implementation.meta.objc", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Test", - "t": "meta.implementation.objc.type.entity.name", + "t": "entity.implementation.meta.name.objc.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "- ", - "t": "meta.implementation.objc.scope.function-with-body.function", + "t": "function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.return-type", + "t": "begin.definition.function.function-with-body.implementation.meta.objc.punctuation.return-type.scope.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", - "t": "meta.c.implementation.objc.storage.type.scope.function-with-body.function.return-type", + "t": "c.function.function-with-body.implementation.meta.objc.return-type.scope.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.return-type", + "t": "definition.end.function.function-with-body.implementation.meta.objc.punctuation.return-type.scope.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "t": "function.function-with-body.implementation.meta.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "applicationWillFinishLaunching", - "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.return-type", + "t": "entity.function.function-with-body.implementation.meta.name.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "t": "argument-type.arguments.entity.function.function-with-body.implementation.meta.name.name-of-parameter.objc.punctuation.scope.separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.begin.definition.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NSNotification *", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "t": "argument-type.function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.definition.end.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "notification", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "t": "argument-type.function.function-with-body.implementation.meta.objc.parameter.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section", + "t": "begin.block.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section", + "t": "block.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "- ", - "t": "meta.implementation.objc.scope.function-with-body.function", + "t": "function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.return-type", + "t": "begin.definition.function.function-with-body.implementation.meta.objc.punctuation.return-type.scope.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "IBAction", - "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "t": "function.function-with-body.implementation.meta.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.return-type", + "t": "definition.end.function.function-with-body.implementation.meta.objc.punctuation.return-type.scope.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "onSelectInput", - "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.return-type", + "t": "entity.function.function-with-body.implementation.meta.name.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "t": "argument-type.arguments.entity.function.function-with-body.implementation.meta.name.name-of-parameter.objc.punctuation.scope.separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.begin.definition.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "t": "argument-type.function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.definition.end.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sender", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "t": "argument-type.function.function-with-body.implementation.meta.objc.parameter.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section", + "t": "begin.block.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " NSString* defaultDir = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language", + "t": "block.c.constant.function-with-body.implementation.language.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ")", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.bracketed.numeric", + "t": "block.bracketed.c.constant.function-with-body.implementation.meta.numeric.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " NSOpenPanel* panel = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NSOpenPanel ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "openPanel", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "panel ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "setAllowedFileTypes", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "begin.block.bracketed.c.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NSArray ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "alloc", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "block.bracketed.c.end.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "initWithObjects", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@\"", - "t": "punctuation.definition.meta.c.string.quoted.double.begin.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "begin.block.bracketed.c.definition.double.function-call.function-with-body.implementation.meta.objc.punctuation.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "ipa", - "t": "meta.c.string.quoted.double.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.double.function-call.function-with-body.implementation.meta.objc.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "punctuation.definition.meta.c.string.quoted.double.end.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.definition.double.end.function-call.function-with-body.implementation.meta.objc.punctuation.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@\"", - "t": "punctuation.definition.meta.c.string.quoted.double.begin.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "begin.block.bracketed.c.definition.double.function-call.function-with-body.implementation.meta.objc.punctuation.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "xcarchive", - "t": "meta.c.string.quoted.double.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.double.function-call.function-with-body.implementation.meta.objc.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "punctuation.definition.meta.c.string.quoted.double.end.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.definition.double.end.function-call.function-with-body.implementation.meta.objc.punctuation.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@\"", - "t": "punctuation.definition.meta.c.string.quoted.double.begin.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "begin.block.bracketed.c.definition.double.function-call.function-with-body.implementation.meta.objc.punctuation.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "app", - "t": "meta.c.string.quoted.double.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.double.function-call.function-with-body.implementation.meta.objc.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "punctuation.definition.meta.c.string.quoted.double.end.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.definition.double.end.function-call.function-with-body.implementation.meta.objc.punctuation.quoted.scope.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nil", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language.bracketed.function-call", + "t": "block.bracketed.c.constant.function-call.function-with-body.implementation.language.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "block.bracketed.c.end.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "panel ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "beginWithCompletionHandler", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "^(NSInteger result)", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "begin.block.bracketed.c.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.control.function-call.function-with-body.implementation.keyword.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call.initialization", + "t": "block.bracketed.c.function-call.function-with-body.implementation.initialization.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call.initialization.parameters", + "t": "block.bracketed.c.definition.function-call.function-with-body.implementation.initialization.meta.objc.parameters.punctuation.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "result == NSFileHandlingPanelOKButton)", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "begin.block.bracketed.c.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "self", - "t": "meta.c.block.implementation.objc.scope.function-with-body.variable.language.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.language.meta.objc.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".inputTextField ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "setStringValue", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "begin.block.bracketed.c.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "panel.URL ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "path", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "block.bracketed.c.end.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed.function-call", + "t": "block.bracketed.c.end.function-call.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body", + "t": "block.c.control.function-with-body.implementation.keyword.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "YES", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language", + "t": "block.c.constant.function-with-body.implementation.language.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "int", - "t": "meta.c.block.implementation.objc.storage.type.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " hex = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0xFEF1F0F", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "t": "block.c.constant.function-with-body.implementation.meta.numeric.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "float", - "t": "meta.c.block.implementation.objc.storage.type.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ing = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3.14", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "t": "block.c.constant.function-with-body.implementation.meta.numeric.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t ing = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3.14e0", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "t": "block.c.constant.function-with-body.implementation.meta.numeric.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t ing = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "31.4e-2", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.numeric", + "t": "block.c.constant.function-with-body.implementation.meta.numeric.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section", + "t": "block.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "meta.implementation.objc.scope.function-with-body.function", + "t": "function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.return-type", + "t": "begin.definition.function.function-with-body.implementation.meta.objc.punctuation.return-type.scope.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "t": "function.function-with-body.implementation.meta.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.return-type", + "t": "definition.end.function.function-with-body.implementation.meta.objc.punctuation.return-type.scope.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.implementation.objc.scope.function-with-body.function.return-type", + "t": "function.function-with-body.implementation.meta.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "initWithParams", - "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.return-type", + "t": "entity.function.function-with-body.implementation.meta.name.objc.return-type.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "t": "argument-type.arguments.entity.function.function-with-body.implementation.meta.name.name-of-parameter.objc.punctuation.scope.separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.begin.definition.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "t": "argument-type.function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.definition.end.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "t": "argument-type.function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "aHandler", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "t": "argument-type.function.function-with-body.implementation.meta.objc.parameter.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.implementation.objc.scope.function-with-body.function", + "t": "function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "withDeviceStateManager", - "t": "meta.implementation.objc.entity.name.scope.function-with-body.function.name-of-parameter", + "t": "entity.function.function-with-body.implementation.meta.name.name-of-parameter.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.implementation.objc.entity.name.scope.function-with-body.function.argument-type.name-of-parameter.separator.arguments", + "t": "argument-type.arguments.entity.function.function-with-body.implementation.meta.name.name-of-parameter.objc.punctuation.scope.separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.definition.meta.begin.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.begin.definition.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "t": "argument-type.function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.definition.meta.end.implementation.objc.type.scope.function-with-body.function.argument-type", + "t": "argument-type.definition.end.function.function-with-body.implementation.meta.objc.punctuation.scope.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type", + "t": "argument-type.function.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "deviceStateManager", - "t": "meta.implementation.objc.scope.function-with-body.function.argument-type.variable.parameter", + "t": "argument-type.function.function-with-body.implementation.meta.objc.parameter.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section", + "t": "begin.block.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "comment.c++.punctuation.meta.c.block.implementation.objc.scope.function-with-body.whitespace.leading", + "t": "block.c.c++.comment.function-with-body.implementation.leading.meta.objc.punctuation.scope.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "//", - "t": "comment.line.double-slash.c++.punctuation.definition.meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.c++.comment.definition.double-slash.function-with-body.implementation.line.meta.objc.punctuation.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " add a tap gesture recognizer", - "t": "comment.line.double-slash.c++.meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.c++.comment.double-slash.function-with-body.implementation.line.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " UITapGestureRecognizer *tapGesture = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "UITapGestureRecognizer ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "alloc", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "initWithTarget", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "self", - "t": "meta.c.block.implementation.objc.scope.function-with-body.variable.language.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.language.meta.objc.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "action", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.name-of-parameter.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.name-of-parameter.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.name-of-parameter.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.name-of-parameter.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "punctuation.definition.meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "t": "block.bracketed.c.definition.function-call.function-with-body.implementation.meta.objc.punctuation.scope.selector.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "selector", - "t": "meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope.selector.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "(", - "t": "punctuation.definition.meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "t": "block.bracketed.c.definition.function-call.function-with-body.implementation.meta.objc.punctuation.scope.selector.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "handleTap:", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.name-of-parameter.bracketed.function-call.support.any-method.selector.method-name", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.method-name.name-of-parameter.objc.scope.selector.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.selector rgb(215, 186, 125)" } }, { "c": ")", - "t": "punctuation.definition.meta.c.block.implementation.objc.storage.type.scope.function-with-body.bracketed.function-call.selector", + "t": "block.bracketed.c.definition.function-call.function-with-body.implementation.meta.objc.punctuation.scope.selector.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " NSMutableArray *gestureRecognizers = ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NSMutableArray ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "array", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gestureRecognizers ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "addObject", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "tapGesture", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.meta.c.begin.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "begin.block.bracketed.c.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gestureRecognizers ", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed", + "t": "block.bracketed.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "addObjectsFromArray", - "t": "meta.c.block.implementation.objc.scope.function-with-body.function.bracketed.function-call.support.any-method", + "t": "any-method.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.scope.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.function.separator.arguments.bracketed.function-call.support.any-method", + "t": "any-method.arguments.block.bracketed.c.function.function-call.function-with-body.implementation.meta.objc.punctuation.scope.separator.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "scnView.gestureRecognizers", - "t": "meta.c.block.implementation.objc.scope.function-with-body.bracketed.function-call", + "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section.bracketed", + "t": "block.bracketed.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " scnView", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "punctuation.meta.c.block.implementation.objc.scope.function-with-body.separator.variable-access", + "t": "block.c.function-with-body.implementation.meta.objc.punctuation.scope.separator.variable-access", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gestureRecognizers", - "t": "meta.c.other.block.implementation.objc.scope.function-with-body.variable.dot-access", + "t": "block.c.dot-access.function-with-body.implementation.meta.objc.other.scope.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = gestureRecognizers;", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body", + "t": "block.c.control.function-with-body.implementation.keyword.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " tapGesture;", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "meta.c.keyword.control.block.implementation.objc.scope.function-with-body", + "t": "block.c.control.function-with-body.implementation.keyword.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nil", - "t": "meta.c.block.implementation.objc.scope.function-with-body.constant.language", + "t": "block.c.constant.function-with-body.implementation.language.meta.objc.scope", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ";", - "t": "meta.c.block.implementation.objc.scope.function-with-body", + "t": "block.c.function-with-body.implementation.meta.objc.scope", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.meta.c.end.block.implementation.objc.scope.function-with-body.section", + "t": "block.c.end.function-with-body.implementation.meta.objc.punctuation.scope.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "punctuation.definition.meta.implementation.objc.storage.type", + "t": "definition.implementation.meta.objc.punctuation.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "end", - "t": "meta.implementation.objc.storage.type", + "t": "implementation.meta.objc.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } } ] \ No newline at end of file diff --git a/extensions/perl/test/colorize-results/test_pl.json b/extensions/perl/test/colorize-results/test_pl.json index dcd92b3d249..a8653b85271 100644 --- a/extensions/perl/test/colorize-results/test_pl.json +++ b/extensions/perl/test/colorize-results/test_pl.json @@ -1,2312 +1,2312 @@ [ { "c": "use", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " strict;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "perl.storage.modifier", + "t": "modifier.perl.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "badfound", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = 0;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sub", - "t": "perl.storage.meta.function.type.sub", + "t": "function.meta.perl.storage.sub.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "perl.meta.function", + "t": "function.meta.perl", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "check_line", - "t": "perl.meta.function.entity.name", + "t": "entity.function.meta.name.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "perl.meta.function", + "t": "function.meta.perl", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "perl.storage.modifier", + "t": "modifier.perl.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ") = ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "perl.variable.other.readwrite.global.punctuation.definition.special", + "t": "definition.global.other.perl.punctuation.readwrite.special.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "_", - "t": "perl.variable.other.readwrite.global.special", + "t": "global.other.perl.readwrite.special.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "perl.punctuation.whitespace.comment.leading", + "t": "comment.leading.perl.punctuation.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Check for that =.", - "t": "perl.comment.line.number-sign", + "t": "comment.line.number-sign.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " =~ ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", - "t": "perl.punctuation.definition.string.regexp.find", + "t": "definition.find.perl.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "^", - "t": "perl.string.regexp.find", + "t": "find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\s", - "t": "perl.string.regexp.find.constant.character.escape", + "t": "character.constant.escape.find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "*if", - "t": "perl.string.regexp.find", + "t": "find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\s", - "t": "perl.string.regexp.find.constant.character.escape", + "t": "character.constant.escape.find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "*", - "t": "perl.string.regexp.find", + "t": "find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\(", - "t": "perl.string.regexp.find.constant.character.escape", + "t": "character.constant.escape.find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": ".*[^!<>=]=([^=].*", - "t": "perl.string.regexp.find", + "t": "find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\)", - "t": "perl.string.regexp.find.constant.character.escape", + "t": "character.constant.escape.find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "|", - "t": "perl.string.regexp.find", + "t": "find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\)", - "t": "perl.string.regexp.find.constant.character.escape", + "t": "character.constant.escape.find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": ")", - "t": "perl.string.regexp.find", + "t": "find.perl.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "/", - "t": "perl.punctuation.definition.string.regexp.find", + "t": "definition.find.perl.punctuation.regexp.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": ") {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(!", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "badfound", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ") {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "The following suspicious lines were found:", - "t": "perl.string.quoted.double", + "t": "double.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\n", - "t": "perl.string.constant.character.escape.quoted.double", + "t": "character.constant.double.escape.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "badfound", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = 1;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition.string.quoted.double", + "t": "definition.double.global.other.perl.punctuation.quoted.readwrite.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global.string.quoted.double", + "t": "double.global.other.perl.quoted.readwrite.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ":", - "t": "perl.string.quoted.double", + "t": "double.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "perl.variable.other.punctuation.definition.string.quoted.double.predefined", + "t": "definition.double.other.perl.predefined.punctuation.quoted.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ".", - "t": "perl.variable.other.string.quoted.double.predefined", + "t": "double.other.perl.predefined.quoted.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ": ", - "t": "perl.string.quoted.double", + "t": "double.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition.string.quoted.double", + "t": "definition.double.global.other.perl.punctuation.quoted.readwrite.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global.string.quoted.double", + "t": "double.global.other.perl.quoted.readwrite.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\n", - "t": "perl.string.constant.character.escape.quoted.double", + "t": "character.constant.double.escape.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " This function opens and reads one file, and calls", - "t": "perl.comment.line.number-sign", + "t": "comment.line.number-sign.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " check_line to analyze each line. Call it with the", - "t": "perl.comment.line.number-sign", + "t": "comment.line.number-sign.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " file name.", - "t": "perl.comment.line.number-sign", + "t": "comment.line.number-sign.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "sub", - "t": "perl.storage.meta.function.type.sub", + "t": "function.meta.perl.storage.sub.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "perl.meta.function", + "t": "function.meta.perl", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "check_file", - "t": "perl.meta.function.entity.name", + "t": "entity.function.meta.name.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "perl.meta.function", + "t": "function.meta.perl", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "perl.storage.modifier", + "t": "modifier.perl.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ") = ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "perl.variable.other.readwrite.global.punctuation.definition.special", + "t": "definition.global.other.perl.punctuation.readwrite.special.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "_", - "t": "perl.variable.other.readwrite.global.special", + "t": "global.other.perl.readwrite.special.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(!", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "open", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(IN, ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")) {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Cannot read ", - "t": "perl.string.quoted.double", + "t": "double.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition.string.quoted.double", + "t": "definition.double.global.other.perl.punctuation.quoted.readwrite.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global.string.quoted.double", + "t": "double.global.other.perl.quoted.readwrite.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ".", - "t": "perl.string.quoted.double", + "t": "double.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\n", - "t": "perl.string.constant.character.escape.quoted.double", + "t": "character.constant.double.escape.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "perl.storage.modifier", + "t": "modifier.perl.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "while", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = )", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "chomp", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.even-tab", + "t": "even-tab.leading-tabs.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "check_line(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "line", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "close", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " IN;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Go through the argument list and check each file", - "t": "perl.comment.line.number-sign", + "t": "comment.line.number-sign.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "perl.punctuation.definition.comment.line.number-sign", + "t": "comment.definition.line.number-sign.perl.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "while", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "my", - "t": "perl.storage.modifier", + "t": "modifier.perl.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "shift", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ARGV", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ") {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-tabs.odd-tab", + "t": "leading-tabs.meta.odd-tab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "check_file(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.control.perl", + "t": "control.keyword.perl", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(!", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "perl.variable.other.readwrite.global.punctuation.definition", + "t": "definition.global.other.perl.punctuation.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "badfound", - "t": "perl.variable.other.readwrite.global", + "t": "global.other.perl.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ") { ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", - "t": "perl.function.support", + "t": "function.perl.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "No suspicious lines were found.", - "t": "perl.string.quoted.double", + "t": "double.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\n", - "t": "perl.string.constant.character.escape.quoted.double", + "t": "character.constant.double.escape.perl.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "perl.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.perl.punctuation.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "; }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/php/test/colorize-results/test_php.json b/extensions/php/test/colorize-results/test_php.json index e5ea4dccb1e..1a5ea5ae44e 100644 --- a/extensions/php/test/colorize-results/test_php.json +++ b/extensions/php/test/colorize-results/test_php.json @@ -1,2730 +1,2730 @@ [ { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "html", "t": "entity.name.tag.tag-html", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "head", "t": "entity.name.tag.tag-head", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "title", "t": "entity.name.tag.tag-title", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Example page", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "body", "t": "entity.name.tag.tag-body", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "string.php", + "t": "php.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// display shuffled cards (EXAMPLE ONLY)", "t": "comment.php", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", "t": "keyword.php", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$index", - "t": "variable.php", + "t": "php.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "number.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$index", - "t": "variable.php", + "t": "php.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "52", "t": "number.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$index", - "t": "variable.php", + "t": "php.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "delimiter.bracket.php", + "t": "bracket.delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", "t": "keyword.php", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$starting_point", - "t": "variable.php", + "t": "php.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "52", "t": "number.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "delimiter.bracket.php", + "t": "bracket.delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$starting_point", - "t": "variable.php", + "t": "php.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "number.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "delimiter.bracket.php", + "t": "bracket.delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "print", "t": "keyword.php", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "(", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Uncut Point: $deck[$index] \"", - "t": "string.php", + "t": "php.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", "t": "delimiter.parenthesis.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$starting_point", - "t": "variable.php", + "t": "php.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++;", "t": "delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "delimiter.bracket.php", + "t": "bracket.delimiter.php", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "?>", "t": "metatag.php", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.metatag.php", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.metatag.php", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.metatag.php", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.metatag.php", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.metatag.php rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.metatag.php rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.metatag.php rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.metatag.php rgb(128, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } } ] \ No newline at end of file diff --git a/extensions/powershell/test/colorize-results/test_ps1.json b/extensions/powershell/test/colorize-results/test_ps1.json index 9ac4610537e..8558d8d6f32 100644 --- a/extensions/powershell/test/colorize-results/test_ps1.json +++ b/extensions/powershell/test/colorize-results/test_ps1.json @@ -3,2409 +3,2409 @@ "c": "# Copyright Microsoft Corporation", "t": "comment.line.number-sign.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "function", - "t": "meta.function.storage.type", + "t": "function.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.function", + "t": "function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Test-IsAdmin", - "t": "powershell.meta.function.entity.name", + "t": "entity.function.meta.name.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "() {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "try", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "identity", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[Security.Principal.WindowsIdentity]", - "t": "entity.other.attribute-name", + "t": "attribute-name.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "::GetCurrent", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "principal", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "New-Object", - "t": "powershell.function.support", + "t": "function.powershell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " Security.Principal.WindowsPrincipal ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "ArgumentList ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "identity", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "principal", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".IsInRole", - "t": "powershell.function.entity.name.invocation", + "t": "entity.function.invocation.name.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[Security.Principal.WindowsBuiltInRole]", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "::Administrator ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " } ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "catch", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "throw", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Failed to determine if the current user has elevated privileges. The error was: '{0}'.\"", - "t": "powershell.string.quoted.double", + "t": "double.powershell.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-f", - "t": "powershell.keyword.operator.string-format", + "t": "keyword.operator.powershell.string-format", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "_", - "t": "powershell.support.constant.automatic", + "t": "automatic.constant.powershell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "meta.function.storage.type", + "t": "function.meta.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.function", + "t": "function.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Invoke-Environment", - "t": "powershell.meta.function.entity.name", + "t": "entity.function.meta.name.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "param", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[Parameter", - "t": "powershell.entity.name.interpolated.simple.source.tag", + "t": "entity.interpolated.name.powershell.simple.source.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "(", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "Mandatory", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source.constant.attribute.parameter.language", + "t": "attribute.attribute-name.constant.entity.interpolated.language.other.parameter.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source.attribute.parameter", + "t": "attribute.attribute-name.entity.interpolated.other.parameter.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "1", - "t": "powershell.entity.other.variable.attribute-name.interpolated.simple.source.attribute.parameter", + "t": "attribute.attribute-name.entity.interpolated.other.parameter.powershell.simple.source.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": ")", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "]", - "t": "powershell.entity.name.interpolated.simple.source.tag", + "t": "entity.interpolated.name.powershell.simple.source.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "[string]", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Command", - "t": "powershell.other.variable.readwrite.interpolated.simple.source", + "t": "interpolated.other.powershell.readwrite.simple.source.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foreach", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "_", - "t": "powershell.support.interpolated.simple.source.constant.automatic", + "t": "automatic.constant.interpolated.powershell.simple.source.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in", - "t": "powershell.keyword.control.interpolated.simple.source", + "t": "control.interpolated.keyword.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " cmd ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", - "t": "powershell.keyword.operator.assignment.interpolated.simple.source", + "t": "assignment.interpolated.keyword.operator.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "c ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "powershell.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.powershell.quoted.simple.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.keyword.other.powershell.quoted.simple.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Command", - "t": "powershell.other.variable.readwrite.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.other.powershell.quoted.readwrite.simple.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " 2>&1 & set\"", - "t": "powershell.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.powershell.quoted.simple.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "_", - "t": "powershell.support.interpolated.simple.source.constant.automatic", + "t": "automatic.constant.interpolated.powershell.simple.source.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-match", - "t": "powershell.keyword.operator.interpolated.simple.source.comparison", + "t": "comparison.interpolated.keyword.operator.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'^([^=]+)=(.*)'", - "t": "powershell.interpolated.simple.source.string.quoted.single", + "t": "interpolated.powershell.quoted.simple.single.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[System.Environment]", - "t": "entity.other.attribute-name", + "t": "attribute-name.entity.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "::SetEnvironmentVariable", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "matches", - "t": "powershell.support.interpolated.simple.source.constant.automatic", + "t": "automatic.constant.interpolated.powershell.simple.source.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "1", - "t": "powershell.support.interpolated.simple.source.constant.numeric.scientific", + "t": "constant.interpolated.numeric.powershell.scientific.simple.source.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": ",", - "t": "powershell.keyword.other.operator.interpolated.simple.source", + "t": "interpolated.keyword.operator.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "matches", - "t": "powershell.support.interpolated.simple.source.constant.automatic", + "t": "automatic.constant.interpolated.powershell.simple.source.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "2", - "t": "powershell.support.interpolated.simple.source.constant.numeric.scientific", + "t": "constant.interpolated.numeric.powershell.scientific.simple.source.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", - "t": "powershell.entity.other.attribute-name.interpolated.simple.source", + "t": "attribute-name.entity.interpolated.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Write-Host", - "t": "powershell.function.support", + "t": "function.powershell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "Object ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'Initializing Azure PowerShell environment...'", - "t": "powershell.string.quoted.single", + "t": "powershell.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "powershell.keyword.other.statement-separator", + "t": "keyword.other.powershell.statement-separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "# PowerShell commands need elevation for dependencies installation and running tests", "t": "comment.line.number-sign.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "if", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "!", - "t": "powershell.keyword.operator.interpolated.simple.source.unary", + "t": "interpolated.keyword.operator.powershell.simple.source.unary", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "(", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Test-IsAdmin", - "t": "powershell.function.support.interpolated.simple.source", + "t": "function.interpolated.powershell.simple.source.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "powershell.keyword.other.interpolated.simple.source", + "t": "interpolated.keyword.other.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Write-Host", - "t": "powershell.function.support", + "t": "function.powershell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "Object ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'Please launch command under administrator account. It is needed for environment setting up and unit test.'", - "t": "powershell.string.quoted.single", + "t": "powershell.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "ForegroundColor Red", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "powershell.keyword.other.statement-separator", + "t": "keyword.other.powershell.statement-separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "env:", - "t": "powershell.variable.support.drive", + "t": "drive.powershell.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "AzurePSRoot", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Split-Path", - "t": "powershell.function.support", + "t": "function.powershell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "Parent ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "Path ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "env:", - "t": "powershell.variable.support.drive", + "t": "drive.powershell.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "AzurePSRoot", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "powershell.keyword.other.statement-separator", + "t": "keyword.other.powershell.statement-separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "if", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Test-Path", - "t": "powershell.function.support.interpolated.simple.source", + "t": "function.interpolated.powershell.simple.source.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment.interpolated.simple.source", + "t": "assignment.interpolated.keyword.operator.powershell.simple.source", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "Path ", - "t": "powershell.interpolated.simple.source", + "t": "interpolated.powershell.simple.source", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "powershell.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.powershell.quoted.simple.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "powershell.keyword.other.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.keyword.other.powershell.quoted.simple.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "env:", - "t": "powershell.variable.support.interpolated.simple.source.string.quoted.double.drive", + "t": "double.drive.interpolated.powershell.quoted.simple.source.string.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "ADXSDKProgramFiles", - "t": "powershell.other.variable.readwrite.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.other.powershell.quoted.readwrite.simple.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\Microsoft Visual Studio 12.0\"", - "t": "powershell.interpolated.simple.source.string.quoted.double", + "t": "double.interpolated.powershell.quoted.simple.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "vsVersion", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"12.0\"", - "t": "powershell.string.quoted.double", + "t": "double.powershell.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "} ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "powershell.keyword.control", + "t": "control.keyword.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "vsVersion", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"11.0\"", - "t": "powershell.string.quoted.double", + "t": "double.powershell.quoted.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "setVSEnv", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'\"{0}\\Microsoft Visual Studio {1}\\VC\\vcvarsall.bat\" x64'", - "t": "powershell.string.quoted.single", + "t": "powershell.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-f", - "t": "powershell.keyword.operator.string-format", + "t": "keyword.operator.powershell.string-format", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "env:", - "t": "powershell.variable.support.drive", + "t": "drive.powershell.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ADXSDKProgramFiles", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "powershell.keyword.other.operator", + "t": "keyword.operator.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "vsVersion", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "powershell.keyword.other.statement-separator", + "t": "keyword.other.powershell.statement-separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "Invoke-Environment", - "t": "powershell.function.support", + "t": "function.powershell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "powershell.keyword.operator.assignment", + "t": "assignment.keyword.operator.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "Command ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "powershell.keyword.other", + "t": "keyword.other.powershell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "setVSEnv", - "t": "powershell.other.variable.readwrite", + "t": "other.powershell.readwrite.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "powershell.keyword.other.statement-separator", + "t": "keyword.other.powershell.statement-separator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } } ] \ No newline at end of file diff --git a/extensions/python/test/colorize-results/tets_py.json b/extensions/python/test/colorize-results/tets_py.json index 31d5b3fb1b4..08f3d4657cb 100644 --- a/extensions/python/test/colorize-results/tets_py.json +++ b/extensions/python/test/colorize-results/tets_py.json @@ -1,629 +1,629 @@ [ { "c": "from", - "t": "keyword.control.import.from.python", + "t": "control.from.import.keyword.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " banana ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "import", - "t": "keyword.control.import.python", + "t": "control.import.keyword.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "keyword.python.operator.arithmetic", + "t": "arithmetic.keyword.operator.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "class", - "t": "python.meta.class.old-style.storage.type", + "t": "class.meta.old-style.python.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "python.meta.class.old-style", + "t": "class.meta.old-style.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Monkey", - "t": "python.meta.class.old-style.type.entity.name", + "t": "class.entity.meta.name.old-style.python.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "python.meta.class.old-style.punctuation.section.begin", + "t": "begin.class.meta.old-style.punctuation.python.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "python.punctuation.whitespace.comment.leading", + "t": "comment.leading.punctuation.python.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "python.punctuation.comment.line.number-sign.definition", + "t": "comment.definition.line.number-sign.punctuation.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Bananas the monkey can eat.", - "t": "python.comment.line.number-sign", + "t": "comment.line.number-sign.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\tcapacity ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.python.operator.assignment", + "t": "assignment.keyword.operator.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10", - "t": "python.constant.numeric.integer.decimal", + "t": "constant.decimal.integer.numeric.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "\t", - "t": "python.meta.function", + "t": "function.meta.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "python.meta.storage.type.function", + "t": "function.meta.python.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "python.meta.function", + "t": "function.meta.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "eat", - "t": "python.meta.entity.name.function", + "t": "entity.function.meta.name.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "python.meta.punctuation.begin.definition.function.parameters", + "t": "begin.definition.function.meta.parameters.punctuation.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "self", - "t": "python.meta.function.parameters.variable.parameter", + "t": "function.meta.parameter.parameters.python.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "python.meta.punctuation.function.parameters.separator", + "t": "function.meta.parameters.punctuation.python.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "python.meta.function.parameters", + "t": "function.meta.parameters.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "N", - "t": "python.meta.function.parameters.variable.parameter", + "t": "function.meta.parameter.parameters.python.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "python.meta.punctuation.definition.function.parameters.end", + "t": "definition.end.function.meta.parameters.punctuation.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "python.meta.punctuation.section.begin.function", + "t": "begin.function.meta.punctuation.python.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'''", - "t": "python.punctuation.begin.definition.string.quoted.single.block", + "t": "begin.block.definition.punctuation.python.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Make the monkey eat N bananas!", - "t": "python.string.quoted.single.block", + "t": "block.python.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'''", - "t": "python.punctuation.definition.end.string.quoted.single.block", + "t": "block.definition.end.punctuation.python.quoted.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\t\tcapacity ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.python.operator.assignment", + "t": "assignment.keyword.operator.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " capacity ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "keyword.python.operator.arithmetic", + "t": "arithmetic.keyword.operator.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " N", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "keyword.python.operator.arithmetic", + "t": "arithmetic.keyword.operator.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "banana.size", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "python.meta.function", + "t": "function.meta.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "python.meta.storage.type.function", + "t": "function.meta.python.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "python.meta.function", + "t": "function.meta.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "feeding_frenzy", - "t": "python.meta.entity.name.function", + "t": "entity.function.meta.name.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "python.meta.punctuation.begin.definition.function.parameters", + "t": "begin.definition.function.meta.parameters.punctuation.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "self", - "t": "python.meta.function.parameters.variable.parameter", + "t": "function.meta.parameter.parameters.python.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "python.meta.punctuation.definition.function.parameters.end", + "t": "definition.end.function.meta.parameters.punctuation.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "python.meta.punctuation.section.begin.function", + "t": "begin.function.meta.punctuation.python.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "eat", - "t": "python.meta.function-call", + "t": "function-call.meta.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "python.meta.punctuation.begin.definition.function-call.arguments", + "t": "arguments.begin.definition.function-call.meta.punctuation.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "9.25", - "t": "python.meta.constant.numeric.function-call.arguments.float", + "t": "arguments.constant.float.function-call.meta.numeric.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "python.meta.punctuation.definition.end.function-call.arguments", + "t": "arguments.definition.end.function-call.meta.punctuation.python", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "keyword.control.python.flow", + "t": "control.flow.keyword.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "python.punctuation.begin.definition.string.quoted.double.single-line", + "t": "begin.definition.double.punctuation.python.quoted.single-line.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Yum yum", - "t": "python.string.quoted.double.single-line", + "t": "double.python.quoted.single-line.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "python.punctuation.definition.end.string.quoted.double.single-line", + "t": "definition.double.end.punctuation.python.quoted.single-line.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } } ] \ No newline at end of file diff --git a/extensions/r/test/colorize-results/test_r.json b/extensions/r/test/colorize-results/test_r.json index cf982ef6f65..3e22ace5d6c 100644 --- a/extensions/r/test/colorize-results/test_r.json +++ b/extensions/r/test/colorize-results/test_r.json @@ -1,827 +1,827 @@ [ { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " © Microsoft. All rights reserved.", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' Add together two numbers.", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "'", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' @param x A number.", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' @param y A number.", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' @return The sum of \\code{x} and \\code{y}.", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' @examples", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' add(1, 1)", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.r.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "' add(10, 1)", "t": "comment.line.number-sign.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "add", - "t": "r.meta.function.entity.name", + "t": "entity.function.meta.name.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "r.meta.function", + "t": "function.meta.r", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<-", - "t": "r.meta.function.keyword.operator.assignment", + "t": "assignment.function.keyword.meta.operator.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "r.meta.function", + "t": "function.meta.r", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "function", - "t": "r.meta.function.keyword.control", + "t": "control.function.keyword.meta.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "x", - "t": "r.variable.other", + "t": "other.r.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "y", - "t": "r.variable.other", + "t": "other.r.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ") ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "r.punctuation.meta.block.section.begin", + "t": "begin.block.meta.punctuation.r.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "r.meta.block", + "t": "block.meta.r", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "x", - "t": "r.meta.variable.other.block", + "t": "block.meta.other.r.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "r.meta.block", + "t": "block.meta.r", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "r.meta.keyword.operator.block.arithmetic", + "t": "arithmetic.block.keyword.meta.operator.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "r.meta.block", + "t": "block.meta.r", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "y", - "t": "r.meta.variable.other.block", + "t": "block.meta.other.r.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "r.punctuation.meta.block.section.end", + "t": "block.end.meta.punctuation.r.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "add(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "r.constant.numeric", + "t": "constant.numeric.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "r.keyword.operator.arithmetic", + "t": "arithmetic.keyword.operator.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "2", - "t": "r.constant.numeric", + "t": "constant.numeric.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2.0", - "t": "r.constant.numeric", + "t": "constant.numeric.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "add(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1.0e10", - "t": "r.constant.numeric", + "t": "constant.numeric.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2.0e10", - "t": "r.constant.numeric", + "t": "constant.numeric.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "paste(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "r.punctuation.definition.begin.string.quoted.double", + "t": "begin.definition.double.punctuation.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "one", - "t": "r.string.quoted.double", + "t": "double.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "r.punctuation.definition.end.string.quoted.double", + "t": "definition.double.end.punctuation.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NULL", - "t": "r.constant.language", + "t": "constant.language.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "paste(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NA", - "t": "r.constant.language", + "t": "constant.language.r", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "r.punctuation.definition.begin.string.quoted.single", + "t": "begin.definition.punctuation.quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "two", - "t": "r.string.quoted.single", + "t": "quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "r.punctuation.definition.end.string.quoted.single", + "t": "definition.end.punctuation.quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "paste(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "r.punctuation.definition.begin.string.quoted.double", + "t": "begin.definition.double.punctuation.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "multi-", - "t": "r.string.quoted.double", + "t": "double.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " line", - "t": "r.string.quoted.double", + "t": "double.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "r.punctuation.definition.end.string.quoted.double", + "t": "definition.double.end.punctuation.quoted.r.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "r.punctuation.definition.begin.string.quoted.single", + "t": "begin.definition.punctuation.quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "multi-", - "t": "r.string.quoted.single", + "t": "quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " line", - "t": "r.string.quoted.single", + "t": "quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "r.punctuation.definition.end.string.quoted.single", + "t": "definition.end.punctuation.quoted.r.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/ruby/test/colorize-results/test_rb.json b/extensions/ruby/test/colorize-results/test_rb.json index 4c3dc785fef..1b2a703b517 100644 --- a/extensions/ruby/test/colorize-results/test_rb.json +++ b/extensions/ruby/test/colorize-results/test_rb.json @@ -1,2840 +1,2840 @@ [ { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " encoding: utf-8", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Changes may cause incorrect behavior and will be lost if the code is", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " regenerated.", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "module", - "t": "ruby.meta.module.keyword.control", + "t": "control.keyword.meta.module.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "ruby.meta.module", + "t": "meta.module.ruby", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Azure", - "t": "ruby.meta.module.entity.name.type.other.inherited-class.first", + "t": "entity.first.inherited-class.meta.module.name.other.ruby.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "ruby.punctuation.meta.module.entity.name.type.other.inherited-class.first.separator.inheritance", + "t": "entity.first.inheritance.inherited-class.meta.module.name.other.punctuation.ruby.separator.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ARM", - "t": "ruby.meta.module.entity.name.type.other.inherited-class.second", + "t": "entity.inherited-class.meta.module.name.other.ruby.second.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "ruby.punctuation.meta.module.entity.name.type.other.inherited-class.separator.inheritance.second", + "t": "entity.inheritance.inherited-class.meta.module.name.other.punctuation.ruby.second.separator.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Scheduler", - "t": "ruby.meta.module.entity.name.type", + "t": "entity.meta.module.name.ruby.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " A service client - single point of access to the REST API.", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "ruby.meta.class", + "t": "class.meta.ruby", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "ruby.meta.keyword.control.class", + "t": "class.control.keyword.meta.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "ruby.meta.class", + "t": "class.meta.ruby", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "SchedulerManagementClient", - "t": "ruby.meta.entity.name.type.class", + "t": "class.entity.meta.name.ruby.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "ruby.meta.class", + "t": "class.meta.ruby", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "ruby.meta.keyword.other.class.operator", + "t": "class.keyword.meta.operator.other.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "ruby.meta.class", + "t": "class.meta.ruby", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "MsRestAzure::AzureServiceClient", - "t": "ruby.meta.entity.other.inherited-class.class", + "t": "class.entity.inherited-class.meta.other.ruby", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "include", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Azure", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "ruby.punctuation.other.separator", + "t": "other.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ARM", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "ruby.punctuation.other.separator", + "t": "other.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Scheduler", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "ruby.punctuation.other.separator", + "t": "other.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Models", - "t": "ruby.other.variable.constant", + "t": "constant.other.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "include", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "MsRestAzure", - "t": "ruby.other.variable.constant", + "t": "constant.other.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " @return job_collections", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "attr_reader", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "ruby.punctuation.definition.other.constant.symbol", + "t": "constant.definition.other.punctuation.ruby.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "job_collections", - "t": "ruby.other.constant.symbol", + "t": "constant.other.ruby.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Creates initializes a new instance of the SchedulerManagementClient class.", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " @param credentials [MsRest::ServiceClientCredentials] credentials to authorize HTTP requests made by the service client.", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " @param base_url [String] the base URI of the service.", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " @param options [Array] filters to be applied to the HTTP requests.", "t": "comment.line.number-sign.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "comment.ruby.punctuation.whitespace.leading", + "t": "comment.leading.punctuation.ruby.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.ruby.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "def", - "t": "ruby.meta.keyword.control.function.method.with-arguments.def", + "t": "control.def.function.keyword.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "initialize", - "t": "ruby.meta.entity.name.function.method.with-arguments", + "t": "entity.function.meta.method.name.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "ruby.punctuation.definition.meta.function.method.with-arguments.parameters", + "t": "definition.function.meta.method.parameters.punctuation.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "credentials", - "t": "ruby.meta.variable.function.method.with-arguments.parameter", + "t": "function.meta.method.parameter.ruby.variable.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "base_url", - "t": "ruby.meta.variable.function.method.with-arguments.parameter", + "t": "function.meta.method.parameter.ruby.variable.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.meta.keyword.operator.function.method.with-arguments.assignment", + "t": "assignment.function.keyword.meta.method.operator.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nil", - "t": "ruby.meta.constant.function.method.with-arguments.language", + "t": "constant.function.language.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ", ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "options", - "t": "ruby.meta.variable.function.method.with-arguments.parameter", + "t": "function.meta.method.parameter.ruby.variable.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.meta.keyword.operator.function.method.with-arguments.assignment", + "t": "assignment.function.keyword.meta.method.operator.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "ruby.meta.function.method.with-arguments", + "t": "function.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nil", - "t": "ruby.meta.constant.function.method.with-arguments.language", + "t": "constant.function.language.meta.method.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ")", - "t": "ruby.punctuation.definition.meta.function.method.with-arguments.parameters", + "t": "definition.function.meta.method.parameters.punctuation.ruby.with-arguments", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "super", - "t": "ruby.keyword.control.pseudo-method", + "t": "control.keyword.pseudo-method.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "credentials", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "ruby.punctuation.separator.object", + "t": "object.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " options", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "base_url", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " base_url ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "ruby.keyword.operator.logical", + "t": "keyword.logical.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.begin", + "t": "begin.definition.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "https://management.azure.com", - "t": "ruby.string.quoted.single", + "t": "quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.end", + "t": "definition.end.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fail", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ArgumentError", - "t": "ruby.other.variable.constant", + "t": "constant.other.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "ruby.punctuation.separator.object", + "t": "object.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.begin", + "t": "begin.definition.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "credentials is nil", - "t": "ruby.string.quoted.single", + "t": "quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.end", + "t": "definition.end.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " credentials", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "ruby.punctuation.separator.method", + "t": "method.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "nil?", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fail", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ArgumentError", - "t": "ruby.other.variable.constant", + "t": "constant.other.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "ruby.punctuation.separator.object", + "t": "object.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.begin", + "t": "begin.definition.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "invalid type of credentials input parameter", - "t": "ruby.string.quoted.single", + "t": "quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.end", + "t": "definition.end.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "unless", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " credentials", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "ruby.punctuation.separator.method", + "t": "method.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "is_a?", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "MsRest", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "ruby.punctuation.other.separator", + "t": "other.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ServiceClientCredentials", - "t": "ruby.other.variable.constant", + "t": "constant.other.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "credentials", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " credentials", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "job_collections", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "JobCollections", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "ruby.punctuation.separator.method", + "t": "method.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "(", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "self", - "t": "ruby.variable.language", + "t": "language.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "jobs", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Jobs", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "ruby.punctuation.separator.method", + "t": "method.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "ruby.keyword.other.special-method", + "t": "keyword.other.ruby.special-method", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "(", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "self", - "t": "ruby.variable.language", + "t": "language.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "ruby.punctuation.function.section", + "t": "function.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "api_version", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.begin", + "t": "begin.definition.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "2016-01-01", - "t": "ruby.string.quoted.single", + "t": "quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "ruby.punctuation.definition.string.quoted.single.end", + "t": "definition.end.punctuation.quoted.ruby.single.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "long_running_operation_retry_timeout", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "30", - "t": "ruby.constant.numeric.integer", + "t": "constant.integer.numeric.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@", - "t": "ruby.punctuation.definition.other.variable.readwrite.instance", + "t": "definition.instance.other.punctuation.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "generate_client_request_id", - "t": "ruby.other.variable.readwrite.instance", + "t": "instance.other.readwrite.ruby.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "ruby.constant.language", + "t": "constant.language.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "MacOS", - "t": "ruby.class.support", + "t": "class.ruby.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "ruby.punctuation.separator.method", + "t": "method.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "version ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">=", - "t": "ruby.keyword.operator.comparison", + "t": "comparison.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "ruby.punctuation.definition.other.constant.symbol", + "t": "constant.definition.other.punctuation.ruby.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "mavericks", - "t": "ruby.other.constant.symbol", + "t": "constant.other.ruby.symbol", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " version ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "`", - "t": "ruby.punctuation.definition.string.begin.interpolated", + "t": "begin.definition.interpolated.punctuation.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "#{", - "t": "line.ruby.punctuation.meta.section.string.begin.interpolated.embedded", + "t": "begin.embedded.interpolated.line.meta.punctuation.ruby.section.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "MAVERICKS_PKG_PATH", - "t": "line.ruby.meta.other.variable.constant.string.interpolated.embedded.source", + "t": "constant.embedded.interpolated.line.meta.other.ruby.source.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "}", - "t": "line.ruby.punctuation.meta.section.string.end.interpolated.embedded.source", + "t": "embedded.end.interpolated.line.meta.punctuation.ruby.section.source.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "/usr/bin/clang --version", - "t": "ruby.string.interpolated", + "t": "interpolated.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "`", - "t": "ruby.punctuation.definition.string.end.interpolated", + "t": "definition.end.interpolated.punctuation.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " version ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "`", - "t": "ruby.punctuation.definition.string.begin.interpolated", + "t": "begin.definition.interpolated.punctuation.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "/usr/bin/clang --version", - "t": "ruby.string.interpolated", + "t": "interpolated.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "`", - "t": "ruby.punctuation.definition.string.end.interpolated", + "t": "definition.end.interpolated.punctuation.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " version ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "ruby.keyword.operator.assignment", + "t": "assignment.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " version", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "ruby.punctuation.section.begin.array", + "t": "array.begin.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", - "t": "ruby.punctuation.definition.string.regexp.classic", + "t": "classic.definition.punctuation.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "clang-", - "t": "ruby.string.regexp.classic", + "t": "classic.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "(", - "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "t": "classic.definition.group.meta.punctuation.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\d", - "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "t": "character.classic.constant.escape.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "+", - "t": "ruby.meta.string.regexp.classic.group", + "t": "classic.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\.\\d", - "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "t": "character.classic.constant.escape.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "+", - "t": "ruby.meta.string.regexp.classic.group", + "t": "classic.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\.\\d", - "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "t": "character.classic.constant.escape.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "+", - "t": "ruby.meta.string.regexp.classic.group", + "t": "classic.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "(", - "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "t": "classic.definition.group.meta.punctuation.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "\\.\\d", - "t": "ruby.meta.constant.string.regexp.classic.group.character.escape", + "t": "character.classic.constant.escape.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "+", - "t": "ruby.meta.string.regexp.classic.group", + "t": "classic.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": ")", - "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "t": "classic.definition.group.meta.punctuation.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "?", - "t": "ruby.meta.string.regexp.classic.group", + "t": "classic.group.meta.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": ")", - "t": "ruby.punctuation.definition.meta.string.regexp.classic.group", + "t": "classic.definition.group.meta.punctuation.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": "/", - "t": "ruby.punctuation.definition.string.regexp.classic", + "t": "classic.definition.punctuation.regexp.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.regexp rgb(209, 105, 105)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.regexp rgb(129, 31, 63)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.regexp rgb(209, 105, 105)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.regexp rgb(129, 31, 63)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.regexp rgb(209, 105, 105)" } }, { "c": ",", - "t": "ruby.punctuation.separator.object", + "t": "object.punctuation.ruby.separator", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "ruby.constant.numeric.integer", + "t": "constant.integer.numeric.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "]", - "t": "ruby.punctuation.section.end.array", + "t": "array.end.punctuation.ruby.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "ruby.keyword.operator.logical", + "t": "keyword.logical.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "ruby.punctuation.definition.string.quoted.begin.double", + "t": "begin.definition.double.punctuation.quoted.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "0", - "t": "ruby.string.quoted.double", + "t": "double.quoted.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "ruby.punctuation.definition.string.quoted.end.double", + "t": "definition.double.end.punctuation.quoted.ruby.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " version ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "ruby.keyword.operator.comparison", + "t": "comparison.keyword.operator.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " latest_version", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "end", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "end", - "t": "ruby.keyword.control", + "t": "control.keyword.ruby", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } } ] \ No newline at end of file diff --git a/extensions/rust/test/colorize-results/test_rs.json b/extensions/rust/test/colorize-results/test_rs.json index f98cd5401e4..b546e075bbe 100644 --- a/extensions/rust/test/colorize-results/test_rs.json +++ b/extensions/rust/test/colorize-results/test_rs.json @@ -3,572 +3,572 @@ "c": "use", "t": "keyword.other.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " std", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "keyword.rust.operator.misc", + "t": "keyword.misc.operator.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "io;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fn", - "t": "keyword.other.rust.fn", + "t": "fn.keyword.other.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "main", - "t": "rust.entity.name.function", + "t": "entity.function.name.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "() {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "println!", - "t": "rust.function.support.std", + "t": "function.rust.std.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Guess the number!\"", - "t": "rust.string.quoted.double", + "t": "double.quoted.rust.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "println!", - "t": "rust.function.support.std", + "t": "function.rust.std.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Please input your guess.\"", - "t": "rust.string.quoted.double", + "t": "double.quoted.rust.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "let", "t": "keyword.other.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "mut", - "t": "rust.storage.modifier.mut", + "t": "modifier.mut.rust.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " guess ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.rust.operator.assignment", + "t": "assignment.keyword.operator.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "String", - "t": "rust.std.storage.class", + "t": "class.rust.std.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage rgb(86, 156, 214)" } }, { "c": "::", - "t": "keyword.rust.operator.misc", + "t": "keyword.misc.operator.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "new", - "t": "rust.entity.name.function", + "t": "entity.function.name.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "();", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " io", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::", - "t": "keyword.rust.operator.misc", + "t": "keyword.misc.operator.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "stdin", - "t": "rust.entity.name.function", + "t": "entity.function.name.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "().", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "read_line", - "t": "rust.entity.name.function", + "t": "entity.function.name.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "&", - "t": "keyword.rust.operator.sigil", + "t": "keyword.operator.rust.sigil", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "mut", - "t": "rust.storage.modifier.mut", + "t": "modifier.mut.rust.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " guess)", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " .", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ok", - "t": "rust.entity.name.function", + "t": "entity.function.name.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " .", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "expect", - "t": "rust.entity.name.function", + "t": "entity.function.name.rust", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Failed to read line\"", - "t": "rust.string.quoted.double", + "t": "double.quoted.rust.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ");", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "println!", - "t": "rust.function.support.std", + "t": "function.rust.std.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"You guessed: {}\"", - "t": "rust.string.quoted.double", + "t": "double.quoted.rust.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", guess);", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/shaderlab/test/colorize-results/test_shader.json b/extensions/shaderlab/test/colorize-results/test_shader.json index 162ff25c637..1742b783f98 100644 --- a/extensions/shaderlab/test/colorize-results/test_shader.json +++ b/extensions/shaderlab/test/colorize-results/test_shader.json @@ -1,563 +1,563 @@ [ { "c": "Shader", - "t": "support.class.shaderlab", + "t": "class.shaderlab.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Example/Diffuse Simple\"", - "t": "shaderlab.string.quoted.double", + "t": "double.quoted.shaderlab.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "SubShader", - "t": "support.class.shaderlab", + "t": "class.shaderlab.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Tags", - "t": "support.class.shaderlab", + "t": "class.shaderlab.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " { ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"RenderType\"", - "t": "shaderlab.string.quoted.double", + "t": "double.quoted.shaderlab.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " = ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Opaque\"", - "t": "shaderlab.string.quoted.double", + "t": "double.quoted.shaderlab.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "CGPROGRAM", - "t": "support.class.shaderlab", + "t": "class.shaderlab.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " #pragma", - "t": "shaderlab.keyword.control", + "t": "control.keyword.shaderlab", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " surface surf Lambert", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "struct", "t": "shaderlab.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " Input {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "float4", "t": "shaderlab.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " color : ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "COLOR", - "t": "support.shaderlab.variable.input", + "t": "input.shaderlab.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " };", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", "t": "shaderlab.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "surf", - "t": "support.shaderlab.meta.function-call.function.any-method", + "t": "any-method.function.function-call.meta.shaderlab.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " (", - "t": "shaderlab.meta.function-call", + "t": "function-call.meta.shaderlab", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Input IN, ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "inout", - "t": "shaderlab.storage.modifier", + "t": "modifier.shaderlab.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "SurfaceOutput", - "t": "support.shaderlab.variable.structure", + "t": "shaderlab.structure.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " o) {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " o.", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Albedo", - "t": "support.shaderlab.variable.output", + "t": "output.shaderlab.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "shaderlab.constant.numeric", + "t": "constant.numeric.shaderlab", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ENDCG", - "t": "support.class.shaderlab", + "t": "class.shaderlab.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Fallback", - "t": "support.shaderlab.variable", + "t": "shaderlab.support.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Diffuse\"", - "t": "shaderlab.string.quoted.double", + "t": "double.quoted.shaderlab.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/shellscript/test/colorize-results/test_sh.json b/extensions/shellscript/test/colorize-results/test_sh.json index 9d8f75f872c..fb4aa20b550 100644 --- a/extensions/shellscript/test/colorize-results/test_sh.json +++ b/extensions/shellscript/test/colorize-results/test_sh.json @@ -1,1828 +1,1828 @@ [ { "c": "#", - "t": "comment.line.number-sign.shell.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "!/usr/bin/env bash", "t": "comment.line.number-sign.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "if", - "t": "shell.meta.scope.if-block.keyword.control", + "t": "control.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "shell.meta.scope.if-block", + "t": "if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[[", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression", + "t": "definition.if-block.logical-expression.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression", + "t": "if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin", + "t": "begin.definition.double.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal", + "t": "definition.double.if-block.logical-expression.meta.normal.other.punctuation.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "OSTYPE", - "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal", + "t": "double.if-block.logical-expression.meta.normal.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end", + "t": "definition.double.end.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression", + "t": "if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.logical", + "t": "if-block.keyword.logical.logical-expression.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression", + "t": "if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin", + "t": "begin.definition.double.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "darwin", - "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double", + "t": "double.if-block.logical-expression.meta.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end", + "t": "definition.double.end.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "*", - "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.glob", + "t": "glob.if-block.keyword.logical-expression.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression", + "t": "if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]]", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression", + "t": "definition.if-block.logical-expression.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "shell.meta.scope.if-block.keyword.operator.list", + "t": "if-block.keyword.list.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block", + "t": "if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "then", - "t": "shell.meta.scope.if-block.keyword.control", + "t": "control.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "\t", - "t": "shell.meta.scope.if-block", + "t": "if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "realpath", - "t": "shell.meta.scope.if-block.function.entity.name", + "t": "entity.function.if-block.meta.name.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "shell.punctuation.definition.meta.scope.if-block.function.arguments", + "t": "arguments.definition.function.if-block.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function", + "t": "function.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "shell.punctuation.definition.meta.scope.if-block.function.group", + "t": "definition.function.group.if-block.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[[", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "t": "definition.function.group.if-block.logical-expression.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.variable.other.function.group.positional", + "t": "definition.function.group.if-block.logical-expression.meta.other.positional.punctuation.scope.shell.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "shell.meta.scope.if-block.logical-expression.variable.other.function.group.positional", + "t": "function.group.if-block.logical-expression.meta.other.positional.scope.shell.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.logical.function.group", + "t": "function.group.if-block.keyword.logical.logical-expression.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " /", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.glob.function.group", + "t": "function.glob.group.if-block.keyword.logical-expression.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]]", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "t": "definition.function.group.if-block.logical-expression.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "&&", - "t": "shell.meta.scope.if-block.keyword.operator.list.function.group", + "t": "function.group.if-block.keyword.list.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "echo", - "t": "shell.meta.scope.if-block.function.group.support.builtin", + "t": "builtin.function.group.if-block.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "t": "begin.definition.double.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.positional", + "t": "definition.double.function.group.if-block.meta.other.positional.punctuation.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "1", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.positional", + "t": "double.function.group.if-block.meta.other.positional.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "t": "definition.double.end.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "shell.meta.scope.if-block.keyword.operator.function.group.pipe", + "t": "function.group.if-block.keyword.meta.operator.pipe.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "echo", - "t": "shell.meta.scope.if-block.function.group.support.builtin", + "t": "builtin.function.group.if-block.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "t": "begin.definition.double.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.normal.function.group", + "t": "definition.double.function.group.if-block.meta.normal.other.punctuation.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "PWD", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.normal.function.group", + "t": "double.function.group.if-block.meta.normal.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "/", - "t": "shell.meta.scope.if-block.string.quoted.double.function.group", + "t": "double.function.group.if-block.meta.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "${", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "t": "bracket.definition.double.function.group.if-block.meta.other.punctuation.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "1", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "t": "bracket.double.function.group.if-block.meta.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "#", - "t": "shell.meta.scope.if-block.keyword.string.quoted.double.variable.other.operator.function.group.bracket.expansion", + "t": "bracket.double.expansion.function.group.if-block.keyword.meta.operator.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ".", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "t": "bracket.double.function.group.if-block.meta.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "/", - "t": "shell.meta.scope.if-block.keyword.string.quoted.double.variable.other.operator.function.group.bracket.expansion", + "t": "bracket.double.expansion.function.group.if-block.keyword.meta.operator.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "}", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.bracket", + "t": "bracket.definition.double.function.group.if-block.meta.other.punctuation.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "t": "definition.double.end.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "shell.meta.scope.if-block.keyword.operator.list.function.group", + "t": "function.group.if-block.keyword.list.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "shell.punctuation.definition.meta.scope.if-block.function.group", + "t": "definition.function.group.if-block.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\tROOT=", - "t": "shell.meta.scope.if-block", + "t": "if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$(", - "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "t": "begin.definition.dollar.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "dirname ", - "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "t": "dollar.if-block.interpolated.meta.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$(", - "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "t": "begin.definition.dollar.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "dirname ", - "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "t": "dollar.if-block.interpolated.meta.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$(", - "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "t": "begin.definition.dollar.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "realpath ", - "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "t": "dollar.if-block.interpolated.meta.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.interpolated.dollar", + "t": "begin.definition.dollar.double.if-block.interpolated.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.interpolated.dollar.special", + "t": "definition.dollar.double.if-block.interpolated.meta.other.punctuation.quoted.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "0", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.interpolated.dollar.special", + "t": "dollar.double.if-block.interpolated.meta.other.quoted.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.interpolated.dollar", + "t": "definition.dollar.double.end.if-block.interpolated.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")))", - "t": "shell.punctuation.definition.meta.scope.if-block.string.end.interpolated.dollar", + "t": "definition.dollar.end.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "else", - "t": "shell.meta.scope.if-block.keyword.control", + "t": "control.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "\tROOT=", - "t": "shell.meta.scope.if-block", + "t": "if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$(", - "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "t": "begin.definition.dollar.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "dirname ", - "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "t": "dollar.if-block.interpolated.meta.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$(", - "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "t": "begin.definition.dollar.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "dirname ", - "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "t": "dollar.if-block.interpolated.meta.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$(", - "t": "shell.punctuation.definition.meta.scope.if-block.string.begin.interpolated.dollar", + "t": "begin.definition.dollar.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "readlink -f ", - "t": "shell.meta.scope.if-block.string.interpolated.dollar", + "t": "dollar.if-block.interpolated.meta.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.string.variable.other.interpolated.dollar.special", + "t": "definition.dollar.if-block.interpolated.meta.other.punctuation.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "0", - "t": "shell.meta.scope.if-block.string.variable.other.interpolated.dollar.special", + "t": "dollar.if-block.interpolated.meta.other.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")))", - "t": "shell.punctuation.definition.meta.scope.if-block.string.end.interpolated.dollar", + "t": "definition.dollar.end.if-block.interpolated.meta.punctuation.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "fi", - "t": "shell.meta.scope.if-block.keyword.control", + "t": "control.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "function", - "t": "shell.meta.function.storage.type", + "t": "function.meta.shell.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "shell.meta.function", + "t": "function.meta.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "code()", - "t": "shell.meta.function.entity.name", + "t": "entity.function.meta.name.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.function", + "t": "function.meta.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "shell.punctuation.definition.meta.scope.function.group", + "t": "definition.function.group.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cd", - "t": "shell.meta.scope.function.group.support.builtin", + "t": "builtin.function.group.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.variable.other.normal.function.group", + "t": "definition.function.group.meta.normal.other.punctuation.scope.shell.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ROOT", - "t": "shell.meta.scope.variable.other.normal.function.group", + "t": "function.group.meta.normal.other.scope.shell.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "comment.shell.punctuation.meta.scope.function.group.whitespace.leading", + "t": "comment.function.group.leading.meta.punctuation.scope.shell.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.shell.punctuation.definition.meta.scope.function.group", + "t": "comment.definition.function.group.line.meta.number-sign.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Node modules", - "t": "comment.line.number-sign.shell.meta.scope.function.group", + "t": "comment.function.group.line.meta.number-sign.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "test", - "t": "shell.meta.scope.function.group.support.builtin", + "t": "builtin.function.group.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " -d node_modules ", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "shell.meta.scope.keyword.operator.function.group.pipe", + "t": "function.group.keyword.meta.operator.pipe.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ./scripts/npm.sh install", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "comment.shell.punctuation.meta.scope.function.group.whitespace.leading", + "t": "comment.function.group.leading.meta.punctuation.scope.shell.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.shell.punctuation.definition.meta.scope.function.group", + "t": "comment.definition.function.group.line.meta.number-sign.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Configuration", - "t": "comment.line.number-sign.shell.meta.scope.function.group", + "t": "comment.function.group.line.meta.number-sign.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "export", - "t": "shell.meta.scope.function.group.storage.modifier", + "t": "function.group.meta.modifier.scope.shell.storage", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " NODE_ENV=development", - "t": "shell.meta.scope.function.group", + "t": "function.group.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "comment.shell.punctuation.meta.scope.function.group.whitespace.leading", + "t": "comment.function.group.leading.meta.punctuation.scope.shell.whitespace", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgba(227, 228, 226, 0.156863)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgba(51, 51, 51, 0.2)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgba(227, 228, 226, 0.156863)" } }, { "c": "#", - "t": "comment.line.number-sign.shell.punctuation.definition.meta.scope.function.group", + "t": "comment.definition.function.group.line.meta.number-sign.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Launch Code", - "t": "comment.line.number-sign.shell.meta.scope.function.group", + "t": "comment.function.group.line.meta.number-sign.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "shell.meta.scope.if-block.keyword.control.function.group", + "t": "control.function.group.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[[", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "t": "definition.function.group.if-block.logical-expression.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin.function.group", + "t": "begin.definition.double.function.group.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal.function.group", + "t": "definition.double.function.group.if-block.logical-expression.meta.normal.other.punctuation.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "OSTYPE", - "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double.variable.other.normal.function.group", + "t": "double.function.group.if-block.logical-expression.meta.normal.other.quoted.scope.shell.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end.function.group", + "t": "definition.double.end.function.group.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.logical.function.group", + "t": "function.group.if-block.keyword.logical.logical-expression.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.begin.function.group", + "t": "begin.definition.double.function.group.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "darwin", - "t": "shell.meta.scope.if-block.logical-expression.string.quoted.double.function.group", + "t": "double.function.group.if-block.logical-expression.meta.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.string.quoted.double.end.function.group", + "t": "definition.double.end.function.group.if-block.logical-expression.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "*", - "t": "shell.meta.scope.if-block.keyword.logical-expression.operator.glob.function.group", + "t": "function.glob.group.if-block.keyword.logical-expression.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.logical-expression.function.group", + "t": "function.group.if-block.logical-expression.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]]", - "t": "shell.punctuation.definition.meta.scope.if-block.logical-expression.function.group", + "t": "definition.function.group.if-block.logical-expression.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "shell.meta.scope.if-block.keyword.operator.list.function.group", + "t": "function.group.if-block.keyword.list.meta.operator.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "then", - "t": "shell.meta.scope.if-block.keyword.control.function.group", + "t": "control.function.group.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "\t\t", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "exec", - "t": "shell.meta.scope.if-block.function.group.support.builtin", + "t": "builtin.function.group.if-block.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ./.build/electron/Electron.app/Contents/MacOS/Electron ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "shell.meta.scope.if-block.function.group.support.builtin", + "t": "builtin.function.group.if-block.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "t": "begin.definition.double.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "t": "definition.double.function.group.if-block.meta.other.punctuation.quoted.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "@", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "t": "double.function.group.if-block.meta.other.quoted.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "t": "definition.double.end.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\t", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "shell.meta.scope.if-block.keyword.control.function.group", + "t": "control.function.group.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "\t\t", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "exec", - "t": "shell.meta.scope.if-block.function.group.support.builtin", + "t": "builtin.function.group.if-block.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ./.build/electron/electron ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "shell.meta.scope.if-block.function.group.support.builtin", + "t": "builtin.function.group.if-block.meta.scope.shell.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.begin.function.group", + "t": "begin.definition.double.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "t": "definition.double.function.group.if-block.meta.other.punctuation.quoted.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "@", - "t": "shell.meta.scope.if-block.string.quoted.double.variable.other.function.group.special", + "t": "double.function.group.if-block.meta.other.quoted.scope.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.meta.scope.if-block.string.quoted.double.end.function.group", + "t": "definition.double.end.function.group.if-block.meta.punctuation.quoted.scope.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\t", - "t": "shell.meta.scope.if-block.function.group", + "t": "function.group.if-block.meta.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fi", - "t": "shell.meta.scope.if-block.keyword.control.function.group", + "t": "control.function.group.if-block.keyword.meta.scope.shell", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "}", - "t": "shell.punctuation.definition.meta.scope.function.group", + "t": "definition.function.group.meta.punctuation.scope.shell", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "code ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "shell.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.punctuation.quoted.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "$", - "t": "shell.punctuation.definition.string.quoted.double.variable.other.special", + "t": "definition.double.other.punctuation.quoted.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "@", - "t": "shell.string.quoted.double.variable.other.special", + "t": "double.other.quoted.shell.special.string.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "shell.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.punctuation.quoted.shell.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } } ] \ No newline at end of file diff --git a/extensions/sql/test/colorize-results/test_sql.json b/extensions/sql/test/colorize-results/test_sql.json index c3020c8eb9e..de841430a31 100644 --- a/extensions/sql/test/colorize-results/test_sql.json +++ b/extensions/sql/test/colorize-results/test_sql.json @@ -1,332 +1,332 @@ [ { "c": "CREATE", - "t": "meta.create.sql.keyword.other", + "t": "create.keyword.meta.other.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.create.sql", + "t": "create.meta.sql", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "VIEW", - "t": "meta.create.sql.keyword.other", + "t": "create.keyword.meta.other.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.create.sql", + "t": "create.meta.sql", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "METRIC_STATS", - "t": "meta.create.sql.entity.name.function", + "t": "create.entity.function.meta.name.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " (ID, MONTH, TEMP_C, RAIN_C) ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "AS", - "t": "sql.keyword.other.alias", + "t": "alias.keyword.other.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "SELECT", - "t": "sql.keyword.other.DML", + "t": "DML.keyword.other.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ID,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "MONTH,", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(TEMP_F ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "sql.keyword.operator.math", + "t": "keyword.math.operator.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "32", - "t": "sql.constant.numeric", + "t": "constant.numeric.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ") ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "sql.keyword.operator.star", + "t": "keyword.operator.sql.star", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "5", - "t": "sql.constant.numeric", + "t": "constant.numeric.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", - "t": "sql.keyword.operator.math", + "t": "keyword.math.operator.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "9", - "t": "sql.constant.numeric", + "t": "constant.numeric.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RAIN_I ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "sql.keyword.operator.star", + "t": "keyword.operator.sql.star", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "sql.constant.numeric", + "t": "constant.numeric.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ".", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3937", - "t": "sql.constant.numeric", + "t": "constant.numeric.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "FROM", - "t": "sql.keyword.other.DML", + "t": "DML.keyword.other.sql", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " STATS;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/swift/test/colorize-results/test_swift.json b/extensions/swift/test/colorize-results/test_swift.json index 58bfff7e09c..0d864e40318 100644 --- a/extensions/swift/test/colorize-results/test_swift.json +++ b/extensions/swift/test/colorize-results/test_swift.json @@ -1,464 +1,464 @@ [ { "c": "var", - "t": "keyword.declaration.swift", + "t": "declaration.keyword.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " teamScore ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.swift.operator", + "t": "keyword.operator.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "swift.constant.numeric", + "t": "constant.numeric.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "var", - "t": "keyword.declaration.swift", + "t": "declaration.keyword.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " greeting ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.swift.operator", + "t": "keyword.operator.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "swift.string.quoted.double.punctuation.definition.begin", + "t": "begin.definition.double.punctuation.quoted.string.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Hello!", - "t": "swift.string.quoted.double", + "t": "double.quoted.string.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "swift.string.quoted.double.punctuation.definition.end", + "t": "definition.double.end.punctuation.quoted.string.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "func", - "t": "swift.meta.function.storage.type", + "t": "function.meta.storage.swift.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "swift.meta.function", + "t": "function.meta.swift", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "hasAnyMatches", - "t": "swift.meta.function.entity.name", + "t": "entity.function.meta.name.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "swift.punctuation.definition.begin.meta.function.parameters", + "t": "begin.definition.function.meta.parameters.punctuation.swift", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "list: [Int], condition: (Int", - "t": "swift.meta.function", + "t": "function.meta.swift", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "swift.punctuation.definition.end.meta.function.parameters", + "t": "definition.end.function.meta.parameters.punctuation.swift", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "swift.meta.function", + "t": "function.meta.swift", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "->", - "t": "swift.punctuation.meta.function.return-type", + "t": "function.meta.punctuation.return-type.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "swift.meta.function.return-type", + "t": "function.meta.return-type.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.return-type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.return-type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Bool) -> Bool ", - "t": "swift.meta.function.type.entity.name.return-type.class", + "t": "class.entity.function.meta.name.return-type.swift.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "keyword.swift.statement", + "t": "keyword.statement.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " item ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in", - "t": "keyword.swift.statement", + "t": "keyword.statement.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " list {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.swift.statement", + "t": "keyword.statement.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " condition(item) {", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "keyword.swift.statement", + "t": "keyword.statement.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "keyword.swift.expressions-and-types", + "t": "expressions-and-types.keyword.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " }", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "keyword.swift.statement", + "t": "keyword.statement.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "false", - "t": "keyword.swift.expressions-and-types", + "t": "expressions-and-types.keyword.swift", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/typescript/test/colorize-results/test_ts.json b/extensions/typescript/test/colorize-results/test_ts.json index c403a1df8bd..e9f7656a355 100644 --- a/extensions/typescript/test/colorize-results/test_ts.json +++ b/extensions/typescript/test/colorize-results/test_ts.json @@ -1,8241 +1,8241 @@ [ { "c": "/* Game of Life", - "t": "comment.block.ts", + "t": "block.comment.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * Implemented in TypeScript", - "t": "comment.block.ts", + "t": "block.comment.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * To learn more about TypeScript, please visit http://www.typescriptlang.org/", - "t": "comment.block.ts", + "t": "block.comment.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " */", - "t": "comment.block.ts", + "t": "block.comment.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "module", - "t": "ts.storage.type", + "t": "storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " Conway ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly", + "t": "block.brace.curly.meta.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "block.ts.meta", + "t": "block.meta.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "export", - "t": "block.ts.storage.type.meta.declaration.object", + "t": "block.declaration.meta.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object", + "t": "block.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "block.ts.storage.type.meta.declaration.object", + "t": "block.declaration.meta.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object", + "t": "block.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Cell", - "t": "block.ts.meta.declaration.object.name.entity.class", + "t": "block.class.declaration.entity.meta.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object", + "t": "block.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body", + "t": "block.body.brace.curly.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "col", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "live", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "boolean", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "constructor", - "t": "block.ts.storage.type.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "col", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "live", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "boolean", - "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " row;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " col;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".live ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " live", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body", + "t": "block.body.brace.curly.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "block.ts.meta", + "t": "block.meta.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "export", - "t": "block.ts.storage.type.meta.declaration.object", + "t": "block.declaration.meta.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object", + "t": "block.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "block.ts.storage.type.meta.declaration.object", + "t": "block.declaration.meta.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object", + "t": "block.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "GameOfLife", - "t": "block.ts.meta.declaration.object.name.entity.class", + "t": "block.class.declaration.entity.meta.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.class rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.class rgb(38, 127, 153)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.class rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object", + "t": "block.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body", + "t": "block.body.brace.curly.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "gridSize", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "canvasSize", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "lineColor", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "string", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "liveColor", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "string", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "deadColor", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "string", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "initialLifeProbability", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "animationRate", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cellSize", - "t": "block.ts.meta.declaration.object.body.field.variable", + "t": "block.body.declaration.field.meta.object.ts.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.meta.declaration.object.body.field", + "t": "block.body.declaration.field.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.field.primitive.support", + "t": "block.body.declaration.field.meta.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "private", - "t": "block.ts.storage.meta.declaration.object.body.modifier", + "t": "block.body.declaration.meta.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " world;", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "constructor", - "t": "block.ts.storage.type.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "()", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".gridSize ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "50", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".canvasSize ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "600", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".lineColor ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'#cdcdcd'", - "t": "block.ts.meta.declaration.object.body.method.decl.string.single", + "t": "block.body.decl.declaration.meta.method.object.single.string.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".liveColor ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'#666'", - "t": "block.ts.meta.declaration.object.body.method.decl.string.single", + "t": "block.body.decl.declaration.meta.method.object.single.string.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".deadColor ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'#eee'", - "t": "block.ts.meta.declaration.object.body.method.decl.string.single", + "t": "block.body.decl.declaration.meta.method.object.single.string.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".initialLifeProbability ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0.5", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".animationRate ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "60", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".world ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".createWorld", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".circleOfLife", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "createWorld", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".travelWorld", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell : Cell", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=>", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator", + "t": "block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\tcell.live ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " Math.random", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".initialLifeProbability;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " cell;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "circleOfLife", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.annotation", + "t": "annotation.block.body.declaration.meta.method.object.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "void", - "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.annotation", + "t": "annotation.block.body.declaration.meta.method.object.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.body.method.annotation", + "t": "annotation.block.body.declaration.meta.method.object.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".world ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".travelWorld", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell: Cell", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=>", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator", + "t": "block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\tcell ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".world", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "t": "array.block.body.brace.decl.declaration.literal.meta.method.object.square.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell.row", - "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "t": "array.block.body.decl.declaration.literal.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "][", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "t": "array.block.body.brace.decl.declaration.literal.meta.method.object.square.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell.col", - "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "t": "array.block.body.decl.declaration.literal.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "t": "array.block.body.brace.decl.declaration.literal.meta.method.object.square.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".draw", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".resolveNextGeneration", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\tsetTimeout", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=>", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator", + "t": "block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".circleOfLife", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ", ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".animationRate", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "resolveNextGeneration", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Cell", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.storage.ts.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "count", - "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this.var.expr.var-single-variable", + "t": "block.body.constant.decl.declaration.expr.language.meta.method.object.this.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".countNeighbors", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "t": "block.body.brace.decl.declaration.expr.meta.method.object.paren.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "t": "block.body.brace.decl.declaration.expr.meta.method.object.paren.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.storage.ts.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "newCell", - "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.var.expr.var-single-variable.new.others", + "t": "block.body.decl.declaration.expr.keyword.meta.method.new.object.others.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable.new", + "t": "block.body.decl.declaration.expr.meta.method.new.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Cell", - "t": "block.ts.type.meta.declaration.object.name.body.method.decl.var.expr.var-single-variable.new", + "t": "block.body.decl.declaration.expr.meta.method.name.new.object.ts.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "t": "block.body.brace.decl.declaration.expr.meta.method.object.paren.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell.row, cell.col, cell.live", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren.var.expr.var-single-variable", + "t": "block.body.brace.decl.declaration.expr.meta.method.object.paren.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "count ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " count ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " newCell.live ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "false", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "t": "block.body.boolean.constant.decl.declaration.language.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "count ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " newCell.live ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "true", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "t": "block.body.boolean.constant.decl.declaration.language.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " newCell;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "countNeighbors", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Cell", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.storage.ts.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "neighbors", - "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric.var.expr.var-single-variable", + "t": "block.body.constant.decl.declaration.expr.meta.method.numeric.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "1", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "; row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "1", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "; row", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "1", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "; col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "; col", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "&&", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "continue", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".isAlive", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell.row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " row, cell.col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " col", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "))", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t\t\tneighbors", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " neighbors;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "isAlive", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "col", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "number", - "t": "block.ts.type.meta.declaration.object.body.primitive.support.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.primitive.support.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".gridSize ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "||", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".gridSize", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "false", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "t": "block.body.boolean.constant.decl.declaration.language.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".world", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "t": "array.block.body.brace.decl.declaration.literal.meta.method.object.square.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row", - "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "t": "array.block.body.decl.declaration.literal.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "][", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "t": "array.block.body.brace.decl.declaration.literal.meta.method.object.square.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "col", - "t": "block.ts.meta.declaration.object.body.method.decl.array.literal", + "t": "array.block.body.decl.declaration.literal.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "]", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square", + "t": "array.block.body.brace.decl.declaration.literal.meta.method.object.square.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".live;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "travelWorld", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "callback", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.storage.ts.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "result", - "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[]", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square.var.expr.var-single-variable", + "t": "array.block.body.brace.decl.declaration.expr.literal.meta.method.object.square.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "; row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".gridSize; row", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.storage.ts.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "rowData", - "t": "block.ts.meta.declaration.object.body.variable.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "block.ts.meta.declaration.object.body.method.decl.var.expr.var-single-variable", + "t": "block.body.decl.declaration.expr.meta.method.object.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[]", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.array.literal.square.var.expr.var-single-variable", + "t": "array.block.body.brace.decl.declaration.expr.literal.meta.method.object.square.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "block.ts.storage.type.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.storage.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "; col ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".gridSize; col", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "++", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t\trowData.push", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "callback", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.expr.new.others", + "t": "block.body.decl.declaration.expr.keyword.meta.method.new.object.others.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl.expr.new", + "t": "block.body.decl.declaration.expr.meta.method.new.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Cell", - "t": "block.ts.type.meta.declaration.object.name.body.method.decl.expr.new", + "t": "block.body.decl.declaration.expr.meta.method.name.new.object.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "row, col, ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "false", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.boolean", + "t": "block.body.boolean.constant.decl.declaration.language.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ")))", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t\tresult.push", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "rowData", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "return", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " result;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "public", - "t": "block.ts.storage.meta.declaration.object.body.modifier.method", + "t": "block.body.declaration.meta.method.modifier.object.storage.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.modifier rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.modifier rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.modifier rgb(86, 156, 214)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "draw", - "t": "block.ts.meta.declaration.object.name.entity.body.method.function", + "t": "block.body.declaration.entity.function.meta.method.name.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.method rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.method rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell", - "t": "block.ts.type.meta.declaration.object.name.body.variable.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.parameter.type.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.parameter.type.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter", + "t": "block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", - "t": "block.ts.type.meta.declaration.object.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Cell", - "t": "block.ts.type.meta.declaration.object.name.body.method.function.parameter.annotation", + "t": "annotation.block.body.declaration.function.meta.method.name.object.parameter.ts.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.annotation rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.annotation rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.type.meta.brace.declaration.object.body.method.function.parameter.round", + "t": "block.body.brace.declaration.function.meta.method.object.parameter.round.ts.type", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method", + "t": "block.body.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.control", + "t": "block.body.control.decl.declaration.keyword.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.numeric", + "t": "block.body.constant.decl.declaration.meta.method.numeric.object.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".canvasSize", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".gridSize;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".context.strokeStyle ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".lineColor;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".context.strokeRect", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell.row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize, cell.col", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize, ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize, ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".context.fillStyle ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.comparison", + "t": "block.body.comparison.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " cell.live ? ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".liveColor : ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".deadColor;", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".context.fillRect", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "cell.row ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize, cell.col", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "block.ts.meta.declaration.object.body.method.decl.keyword.operator.arithmetic", + "t": "arithmetic.block.body.decl.declaration.keyword.meta.method.object.operator.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize, ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize, ", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "block.ts.meta.declaration.object.body.method.decl.constant.language.this", + "t": "block.body.constant.decl.declaration.language.meta.method.object.this.ts", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.language rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.language rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.language rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.language rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.language rgb(86, 156, 214)" } }, { "c": ".cellSize", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "block.ts.meta.brace.declaration.object.body.method.decl.paren", + "t": "block.body.brace.decl.declaration.meta.method.object.paren.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", - "t": "block.ts.meta.declaration.object.body.method.decl", + "t": "block.body.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body.method.decl", + "t": "block.body.brace.curly.decl.declaration.meta.method.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", - "t": "block.ts.meta.declaration.object.body", + "t": "block.body.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly.declaration.object.body", + "t": "block.body.brace.curly.declaration.meta.object.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "block.ts.meta.brace.curly", + "t": "block.brace.curly.meta.ts", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "ts.storage.type.meta.var.expr", + "t": "expr.meta.storage.ts.type.var", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "ts.meta.var.expr", + "t": "expr.meta.ts.var", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "game", - "t": "ts.meta.variable.var.expr.var-single-variable", + "t": "expr.meta.ts.var.var-single-variable.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " = ", - "t": "ts.meta.var.expr.var-single-variable", + "t": "expr.meta.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "new", - "t": "ts.meta.keyword.var.expr.var-single-variable.new.others", + "t": "expr.keyword.meta.new.others.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", - "t": "ts.meta.var.expr.var-single-variable.new", + "t": "expr.meta.new.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Conway.GameOfLife", - "t": "ts.type.meta.name.var.expr.var-single-variable.new", + "t": "expr.meta.name.new.ts.type.var.var-single-variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.type.name rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.type.name rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "ts.meta.brace.paren.var.expr.var-single-variable", + "t": "brace.expr.meta.paren.ts.var.var-single-variable", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } } ] \ No newline at end of file diff --git a/extensions/vb/test/colorize-results/test_vb.json b/extensions/vb/test/colorize-results/test_vb.json index ec0624c0dfc..d454a105276 100644 --- a/extensions/vb/test/colorize-results/test_vb.json +++ b/extensions/vb/test/colorize-results/test_vb.json @@ -1,2180 +1,2180 @@ [ { "c": "'", - "t": "comment.line.apostrophe.asp.punctuation.definition", + "t": "apostrophe.asp.comment.definition.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Copyright (c) Microsoft Corporation. All rights reserved.", - "t": "comment.line.apostrophe.asp", + "t": "apostrophe.asp.comment.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "Public Sub ", "t": "asp.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": "LongTask", - "t": "asp.support.function.entity.name", + "t": "asp.entity.function.name.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ByVal", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " Duration ", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "As", - "t": "asp.meta.round-brackets.keyword.operator", + "t": "asp.keyword.meta.operator.round-brackets", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Single", - "t": "asp.type.support.meta.round-brackets.vb", + "t": "asp.meta.round-brackets.support.type.vb", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " _", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space", + "t": "leading-space.meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ByVal MinimumInterval ", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "As", - "t": "asp.meta.round-brackets.keyword.operator", + "t": "asp.keyword.meta.operator.round-brackets", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Single", - "t": "asp.type.support.meta.round-brackets.vb", + "t": "asp.meta.round-brackets.support.type.vb", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Dim", - "t": "asp.storage.type.variable.other.dim", + "t": "asp.dim.other.storage.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "asp.variable.other.dim", + "t": "asp.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Threshold", - "t": "asp.variable.other.dim.bfeac", + "t": "asp.bfeac.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "asp.variable.other.dim", + "t": "asp.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "As", "t": "asp.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Single", - "t": "asp.type.support.vb", + "t": "asp.support.type.vb", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Dim", - "t": "asp.storage.type.variable.other.dim", + "t": "asp.dim.other.storage.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "asp.variable.other.dim", + "t": "asp.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Start", - "t": "asp.variable.other.dim.bfeac", + "t": "asp.bfeac.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "asp.variable.other.dim", + "t": "asp.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "As", "t": "asp.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Single", - "t": "asp.type.support.vb", + "t": "asp.support.type.vb", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Dim", - "t": "asp.storage.type.variable.other.dim", + "t": "asp.dim.other.storage.type.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } }, { "c": " ", - "t": "asp.variable.other.dim", + "t": "asp.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "blnCancel", - "t": "asp.variable.other.dim.bfeac", + "t": "asp.bfeac.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "asp.variable.other.dim", + "t": "asp.dim.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "As", "t": "asp.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Boolean", - "t": "asp.type.support.vb", + "t": "asp.support.type.vb", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type rgb(78, 201, 176)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type rgb(38, 127, 153)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "comment.line.apostrophe.asp.punctuation.definition", + "t": "apostrophe.asp.comment.definition.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " The Timer property of the DateAndTime object returns the seconds", - "t": "comment.line.apostrophe.asp", + "t": "apostrophe.asp.comment.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "comment.line.apostrophe.asp.punctuation.definition", + "t": "apostrophe.asp.comment.definition.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " and milliseconds that have passed since midnight.", - "t": "comment.line.apostrophe.asp", + "t": "apostrophe.asp.comment.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Start", - "t": "asp.variable.other", + "t": "asp.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.operator.js", + "t": "js.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "CSng", - "t": "asp.support.function.vb", + "t": "asp.function.support.vb", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Timer", - "t": "asp.support.function.meta.round-brackets.vb", + "t": "asp.function.meta.round-brackets.support.vb", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Threshold", - "t": "asp.variable.other", + "t": "asp.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.operator.js", + "t": "js.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " MinimumInterval", - "t": "asp.variable.other", + "t": "asp.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Do", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "While", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "CSng", - "t": "asp.support.function.vb", + "t": "asp.function.support.vb", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Timer", - "t": "asp.support.function.meta.round-brackets.vb", + "t": "asp.function.meta.round-brackets.support.vb", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "keyword.operator.js", + "t": "js.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Start", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "meta.round-brackets.keyword.operator.js", + "t": "js.keyword.meta.operator.round-brackets", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " Duration", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "comment.line.apostrophe.asp.punctuation.definition", + "t": "apostrophe.asp.comment.definition.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " In a real application, some unit of work would", - "t": "comment.line.apostrophe.asp", + "t": "apostrophe.asp.comment.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "comment.line.apostrophe.asp.punctuation.definition", + "t": "apostrophe.asp.comment.definition.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " be done here each time through the loop.", - "t": "comment.line.apostrophe.asp", + "t": "apostrophe.asp.comment.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "If", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "CSng", - "t": "asp.support.function.vb", + "t": "asp.function.support.vb", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Timer", - "t": "asp.support.function.meta.round-brackets.vb", + "t": "asp.function.meta.round-brackets.support.vb", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">", - "t": "keyword.operator.js", + "t": "js.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Start", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "meta.round-brackets.keyword.operator.js", + "t": "js.keyword.meta.operator.round-brackets", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " Threshold", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Then", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "RaiseEvent ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "PercentDone", - "t": "asp.support.function.entity.name", + "t": "asp.entity.function.name.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.function rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "asp.punctuation.meta.round-brackets.section.begin", + "t": "asp.begin.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " _", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.round-brackets.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.round-brackets.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Threshold", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " /", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " Duration", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "meta.round-brackets", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " blnCancel", - "t": "asp.meta.round-brackets.variable.other", + "t": "asp.meta.other.round-brackets.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "asp.punctuation.meta.round-brackets.section.end", + "t": "asp.end.meta.punctuation.round-brackets.section", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "comment.line.apostrophe.asp.punctuation.definition", + "t": "apostrophe.asp.comment.definition.line.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " Check to see if the operation was canceled.", - "t": "comment.line.apostrophe.asp", + "t": "apostrophe.asp.comment.line", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "If", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " blnCancel ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Then", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Exit Sub", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Threshold", - "t": "asp.variable.other", + "t": "asp.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "keyword.operator.js", + "t": "js.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " Threshold", - "t": "asp.variable.other", + "t": "asp.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "keyword.operator.js", + "t": "js.keyword.operator", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " MinimumInterval", - "t": "asp.variable.other", + "t": "asp.other.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "End If", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", - "t": "meta.leading-space.odd-tab.spaces", + "t": "leading-space.meta.odd-tab.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space.spaces.even-tab", + "t": "even-tab.leading-space.meta.spaces", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", - "t": "meta.leading-space", + "t": "leading-space.meta", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Loop", - "t": "asp.keyword.control", + "t": "asp.control.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "End Sub", "t": "asp.storage.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.storage.type rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.storage.type rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.storage.type rgb(86, 156, 214)" } } ] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json b/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json index a41190476d6..7ca04b0e92f 100644 --- a/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json +++ b/extensions/vscode-colorize-tests/test/colorize-results/test_cshtml.json @@ -1,3115 +1,3115 @@ [ { "c": "@{", - "t": "support.function.cshtml", + "t": "cshtml.function.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "keyword.cs", + "t": "cs.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "total", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", - "t": "number.cs", + "t": "cs.number", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "keyword.cs", + "t": "cs.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "totalMessage", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"\"", - "t": "string.cs", + "t": "cs.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@* a multiline", "t": "comment.cs", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " razor comment embedded in csharp *@", "t": "comment.cs", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "if", - "t": "keyword.cs", + "t": "cs.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.cs", + "t": "cs.parenthesis.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "IsPost", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.parenthesis.cs", + "t": "cs.parenthesis.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.bracket.cs", + "t": "bracket.cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// Retrieve the numbers that the user entered.", "t": "comment.cs", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "keyword.cs", + "t": "cs.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "num1", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Request", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.array.cs", + "t": "array.cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"text1\"", - "t": "string.cs", + "t": "cs.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", - "t": "punctuation.array.cs", + "t": "array.cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "var", - "t": "keyword.cs", + "t": "cs.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "num2", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Request", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "[", - "t": "punctuation.array.cs", + "t": "array.cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"text2\"", - "t": "string.cs", + "t": "cs.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", - "t": "punctuation.array.cs", + "t": "array.cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// Convert the entered strings into integers numbers and add.", "t": "comment.cs", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "total", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "num1", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "AsInt", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "punctuation.parenthesis.cs", + "t": "cs.parenthesis.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "num2", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "AsInt", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "()", - "t": "punctuation.parenthesis.cs", + "t": "cs.parenthesis.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "italic", "t": "entity.name.tag.tag-italic", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "><", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "bold", "t": "entity.name.tag.tag-bold", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "totalMessage", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"Total = \"", - "t": "string.cs", + "t": "cs.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "total", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.bracket.cs", + "t": "bracket.cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.cshtml", + "t": "cshtml.function.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "entity.name.tag.html", + "t": "entity.html.name.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "html", "t": "entity.name.tag.tag-html", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "lang", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"en\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "head", "t": "entity.name.tag.tag-head", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "title", "t": "entity.name.tag.tag-title", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Add Numbers", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "meta", "t": "entity.name.tag.tag-meta", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "charset", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"utf-8\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/>", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "body", "t": "entity.name.tag.tag-body", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", "t": "entity.name.tag.tag-p", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Enter two whole numbers and then click ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "strong", "t": "entity.name.tag.tag-strong", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Add", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ".", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "form", "t": "entity.name.tag.tag-form", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "action", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "method", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"post\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", "t": "entity.name.tag.tag-p", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "label", "t": "entity.name.tag.tag-label", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text1\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "First Number:", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "input", "t": "entity.name.tag.tag-input", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "type", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "name", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text1\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/>", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", "t": "entity.name.tag.tag-p", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "label", "t": "entity.name.tag.tag-label", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "for", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text2\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Second Number:", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "input", "t": "entity.name.tag.tag-input", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "type", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "name", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"text2\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/>", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", "t": "entity.name.tag.tag-p", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "input", "t": "entity.name.tag.tag-input", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "type", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"submit\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "value", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"Add\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/>", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@* now we call the totalMessage method", "t": "comment.cs", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "\t (a multi line razor comment outside code) *@", "t": "comment.cs", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", "t": "entity.name.tag.tag-p", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "@", - "t": "support.function.cshtml", + "t": "cshtml.function.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "totalMessage", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "p", "t": "entity.name.tag.tag-p", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "@(", - "t": "support.function.cshtml", + "t": "cshtml.function.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "totalMessage", - "t": "ident.cs", + "t": "cs.ident", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", - "t": "punctuation.cs", + "t": "cs.punctuation", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"!\"", - "t": "string.cs", + "t": "cs.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.cshtml", + "t": "cshtml.function.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " An email address (with escaped at character): name@@domain.com", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } } ] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json b/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json index 9c37eb24e4e..32b4aad2e83 100644 --- a/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json +++ b/extensions/vscode-colorize-tests/test/colorize-results/test_handlebars.json @@ -1,2015 +1,2015 @@ [ { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", "t": "entity.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"entry\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h1", "t": "entity.name.tag.tag-h1", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "title", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#if", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "author", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h2", "t": "entity.name.tag.tag-h2", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "author.firstName", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "author.lastName", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "else", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h2", "t": "entity.name.tag.tag-h2", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Unknown Author", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/if", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "contentBody", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#unless", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "license", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h3", "t": "entity.name.tag.tag-h3", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"warning\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "WARNING: This entry does not have a license!", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/unless", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", "t": "entity.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"footnotes\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "ul", "t": "entity.name.tag.tag-ul", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#each", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "footnotes", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "li", "t": "entity.name.tag.tag-li", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "this", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/each", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h1", "t": "entity.name.tag.tag-h1", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Comments", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", "t": "entity.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"comments\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#each", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "comments", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "h2", "t": "entity.name.tag.tag-h2", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "a", "t": "entity.name.tag.tag-a", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "href", - "t": "entity.other.attribute-name.html", + "t": "attribute-name.entity.html.other", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", - "t": "meta.tag.assign.html", + "t": "assign.html.meta.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"/posts/", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "../permalink", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.html", + "t": "html.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.html rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.html rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "title", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "div", "t": "entity.name.tag.tag-div", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "punctuation.definition.meta.tag.begin.html", + "t": "begin.definition.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "body", - "t": "variable.parameter.handlebars", + "t": "handlebars.parameter.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\t", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{{", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/each", - "t": "keyword.helper.handlebars", + "t": "handlebars.helper.keyword", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword rgb(86, 156, 214)" } }, { "c": "}}", - "t": "punctuation.expression.unescaped.handlebars", + "t": "expression.handlebars.punctuation.unescaped", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "punctuation.definition.meta.tag.end.html", + "t": "definition.end.html.meta.punctuation.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } } ] \ No newline at end of file diff --git a/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json b/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json index 3a632475db2..0c20148acbd 100644 --- a/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json +++ b/extensions/vscode-colorize-tests/test/colorize-results/test_scss.json @@ -3,17138 +3,17138 @@ "c": "// snippets from the Sass documentation at http://sass-lang.com/", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/* css stuff */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/* charset */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@charset", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "UTF-8", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* nested rules */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#main", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "97%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "div", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-size:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-weight:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "pre", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-size:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* parent selector (&) */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "#main", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "black", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-weight:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "&", - "t": "entity.name.tag.sass", + "t": "entity.name.sass.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":hover", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "red", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* nested properties */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ".funky", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "/", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "3px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "family:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "fantasy", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "size:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "30em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "weight:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "black", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* nesting conflicts */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "tr.default", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// properties", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo :", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// rule", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo.bar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// selector", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo :", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo:bar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// selector", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo :", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// rule", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* extended comment syntax */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/* This comment is", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * several lines long.", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * since it uses the CSS comment syntax,", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " * it will appear in the CSS output. */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "body", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "black", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "// These comments are only one line long each.", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "// They won't appear in the CSS output,", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "// since they use the single-line comment syntax.", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "a", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "green", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* variables */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "$width:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "5em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$width:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Second width?", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "!default", "t": "literal.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#main", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$localvar:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "6em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$width", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$font-size:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "12px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$line-height:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "30px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$font-size", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$line-height", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$name:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$attr:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p.", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$name", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$attr", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "blue", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* variable declaration with whitespaces */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "// Set the color of your columns", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "$grid-background-column-color :", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "rgba(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "225", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0.25", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "!default", "t": "literal.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* operations*/", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "p", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#010203", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#040506", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-family:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sans-", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "serif", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "auto", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "content:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "I ate #{5 + 10} pies!", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "hsl(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "50%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "hsl(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$hue:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$saturation:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$lightness:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "50%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* functions*/", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "$grid-width:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "40px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$gutter-width:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@function", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "grid-width(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$n", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@return", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$n", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$grid-width", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$n", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$gutter-width", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#sidebar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "grid-width(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "5", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* @import */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@import", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "foo.scss", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$family:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "unquote(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Droid+Sans", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@import", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "rounded-corners", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ",", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "http://fonts.googleapis.com/css?family=#{$family}", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#main", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@import", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "example", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* @media */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ".sidebar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "300px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@media", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "screen", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "and", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "orientation", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ": ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "landscape", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "500px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* @extend */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ".error", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#f00", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#fdd", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".seriousError", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@extend", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".error", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#context", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a%extreme", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "blue", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-weight:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-size:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".notice", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@extend", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "%extreme", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "!optional", "t": "literal.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* @debug and @warn */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@debug", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "12em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "adjust-location(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$x", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$y", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "unitless(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$x", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@warn", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Assuming #{$x} to be in pixels", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$x:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$x", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "unitless(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$y", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@warn", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Assuming #{$y} to be in pixels", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$y:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$y", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "position:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "relative", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "left:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$x", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "top:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$y", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* control directives */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "/* if statement */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "p", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "+", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "solid", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "5", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "dotted", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "null", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "double", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* if else statement */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "$type:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "monster", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$type", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "ocean", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "blue", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@else", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "black", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* for statement */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@for", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "from", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "through", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".item-", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* each statement */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@each", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$animal", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "in", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "puma", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sea-slug", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "egret", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "salamander", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$animal", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-icon", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-image:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "/images/#{$animal}.png", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* while statement */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "$i:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "6", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@while", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ">", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".item-", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2em", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* function with controlstatements */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@function", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$total", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$a", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@for", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "from", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "to", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$total", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@if", - "t": "keyword.flow.control.at-rule.sass", + "t": "at-rule.control.flow.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "unit(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$a", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "%", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "and", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$i", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "==", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "(", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$total", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": "))", - "t": "punctuation.parenthesis.sass", + "t": "parenthesis.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$z:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@return", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "1", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@return", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$grid", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* @mixin simple*/", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "large-text", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "family:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Arial", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "size:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "20px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "weight:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bold", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#ff0000", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".page-title", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@include", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "large-text", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "padding:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* mixin with parameters */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sexy-border(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$color", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1in", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$color", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "width:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$width", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "style:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "dashed", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "p", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@include", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "sexy-border(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "blue", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* mixin with varargs */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "box-shadow(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$shadows", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "...", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-moz-box-shadow:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$shadows", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-webkit-box-shadow:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$shadows", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "box-shadow:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$shadows", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".shadows", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@include", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "box-shadow(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "5px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#666", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "2px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "6px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "10px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#999", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* include with varargs */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "colors(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$text", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$background", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ",", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$border", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$text", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$background", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "border-color:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$border", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$values:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#ff0000", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ",", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#00ff00", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ",", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#0000ff", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".primary", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@include", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "colors(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$values", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "...", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* include with body */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "apply-to-ie6-only", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "*", - "t": "entity.name.tag.sass", + "t": "entity.name.sass.tag", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "html", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@content", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": ";", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@include", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "apply-to-ie6-only", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#logo", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "background-image:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/logo.gif", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* attributes */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "[", - "t": "punctuation.bracket.sass", + "t": "bracket.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "rel", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "external", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", - "t": "punctuation.bracket.sass", + "t": "bracket.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "::after", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "content:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "s", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/*page */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@page", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":left", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-left:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "4cm", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-right:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "3cm", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* missing semicolons */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "tr.default", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo.bar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$foo:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo :", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "white", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo.bar1", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@extend", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "tr.default", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo.bar2", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@import", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "compass", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "bar:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "black", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* rules without whitespace */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "legend", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "s", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-top:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-bottom:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "#123", "t": "constant.rgb-value.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.rgb-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.rgb-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.rgb-value rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.rgb-value rgb(4, 81, 165)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.rgb-value rgb(212, 212, 212)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "margin-top:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "s(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* extend with interpolation variable */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@mixin", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "error(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$a:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "false", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@extend", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$a", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@extend", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$a", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#bar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "a:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ".bar", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "b:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1px", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@include", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "error(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "bar", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* css3: @font face */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@font-face", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "font-family:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "Delicious", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "src:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "url(", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "Delicious-Roman.otf", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ")", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* rule names with variables */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": ".orbit-", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$d", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-prev", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$d", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-style:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo-", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$d", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " 1;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$d", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-bar-", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$d", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " 2;", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "foo-", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": "#{", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$d", - "t": "variable.ref.sass", + "t": "ref.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "support.function.interpolation.sass", + "t": "function.interpolation.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-bar:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* keyframes */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "@-webkit-keyframes", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NAME-YOUR-ANIMATION", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@-moz-keyframes", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NAME-YOUR-ANIMATION", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@-o-keyframes", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NAME-YOUR-ANIMATION", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "@keyframes", - "t": "keyword.control.at-rule.sass", + "t": "at-rule.control.keyword.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "NAME-YOUR-ANIMATION", - "t": "support.function.name.sass", + "t": "function.name.sass.support", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "0", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "100%", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "opacity:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "1", "t": "constant.numeric.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* string escaping */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "[", - "t": "punctuation.bracket.sass", + "t": "bracket.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "data-icon", - "t": "support.property-value.sass", + "t": "property-value.sass.support", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.property-value.sass rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.property-value rgb(4, 81, 165)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.property-value rgb(4, 81, 165)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "=", "t": "keyword.operator.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.operator rgb(212, 212, 212)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.operator rgb(0, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.operator rgb(212, 212, 212)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.operator rgb(0, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.operator rgb(212, 212, 212)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "test-1", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "]", - "t": "punctuation.bracket.sass", + "t": "bracket.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": ":before", - "t": "entity.name.selector.sass", + "t": "entity.name.sass.selector", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.selector rgb(215, 186, 125)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.selector rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.selector rgb(215, 186, 125)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.selector rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.selector rgb(215, 186, 125)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "{", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "content:", - "t": "support.type.property-name.sass", + "t": "property-name.sass.support.type", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.support.type.property-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.support.type.property-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.support.type.property-name.sass rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.support.type.property-name rgb(212, 212, 212)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\\\", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "}", - "t": "punctuation.curly.sass", + "t": "curly.punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* a comment */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "$var1:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\'", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "'", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "$var2:", - "t": "variable.decl.sass", + "t": "decl.sass.variable", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\\\"", - "t": "string.sass", + "t": "sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "\"", - "t": "string.punctuation.sass", + "t": "punctuation.sass.string", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ";", "t": "punctuation.sass", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "/* another comment */", "t": "comment.sass", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } } ] \ No newline at end of file diff --git a/extensions/xml/test/colorize-results/test_xml.json b/extensions/xml/test/colorize-results/test_xml.json index 36a28c9e42a..f574d2caf51 100644 --- a/extensions/xml/test/colorize-results/test_xml.json +++ b/extensions/xml/test/colorize-results/test_xml.json @@ -1,1828 +1,1828 @@ [ { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "project", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "target", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "name", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "jar", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "mkdir", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "dir", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "build/jar", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "/>", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "jar", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "destfile", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "build/jar/HelloWorld.jar", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "basedir", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "build/classes", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "manifest", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "attribute", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "name", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "Main-Class", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "value", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "oata.HelloWorld", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "/>", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "xml.punctuation.definition.comment.block", + "t": "block.comment.definition.punctuation.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "character", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "id", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "Lucy", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "hr", - "t": "meta.tag.xml.entity.name.namespace", + "t": "entity.meta.name.namespace.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "meta.tag.xml.punctuation.entity.name.namespace.separator", + "t": "entity.meta.name.namespace.punctuation.separator.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "name", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Lucy", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "hr", - "t": "meta.tag.xml.entity.name.namespace", + "t": "entity.meta.name.namespace.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "meta.tag.xml.punctuation.entity.name.namespace.separator", + "t": "entity.meta.name.namespace.punctuation.separator.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": "born", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "1952-03-03", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "qualification", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "bossy, crabby and selfish", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "VisualState", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ".Setters", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": ">", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Setter", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Target", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "inputPanel.Orientation", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Value", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "Vertical", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "/>", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "<", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Setter", - "t": "meta.tag.xml.entity.name.localname", + "t": "entity.localname.meta.name.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Target", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "inputButton.Margin", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": " ", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "Value", - "t": "meta.tag.xml.entity.localname.other.attribute-name", + "t": "attribute-name.entity.localname.meta.other.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.other.attribute-name rgb(156, 220, 254)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.other.attribute-name rgb(255, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.other.attribute-name rgb(156, 220, 254)" } }, { "c": "=", "t": "meta.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.begin", + "t": "begin.definition.double.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "0,4,0,0", - "t": "meta.tag.xml.string.quoted.double", + "t": "double.meta.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "\"", - "t": "meta.tag.xml.punctuation.definition.string.quoted.double.end", + "t": "definition.double.end.meta.punctuation.quoted.string.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string.tag rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.xml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string.tag rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.xml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string.tag rgb(206, 145, 120)" } }, { "c": "/>", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } }, { "c": "", - "t": "meta.tag.xml.punctuation.definition", + "t": "definition.meta.punctuation.tag.xml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.tag rgb(128, 128, 128)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.tag rgb(128, 128, 128)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.tag rgb(128, 128, 128)" } } ] \ No newline at end of file diff --git a/extensions/yaml/test/colorize-results/test_yaml.json b/extensions/yaml/test/colorize-results/test_yaml.json index 1134f0cee14..189dbaf2e63 100644 --- a/extensions/yaml/test/colorize-results/test_yaml.json +++ b/extensions/yaml/test/colorize-results/test_yaml.json @@ -1,794 +1,794 @@ [ { "c": "#", - "t": "comment.line.number-sign.yaml.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " sequencer protocols for Laser eye surgery", "t": "comment.line.number-sign.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "-", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "--", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "- ", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "step", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "&", - "t": "yaml.punctuation.definition.variable.other", + "t": "definition.other.punctuation.variable.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "id001 # defines anchor label &id001", - "t": "yaml.variable.other", + "t": "other.variable.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "instrument", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " Lasik 2000", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "pulseEnergy", - "t": "yaml.entity.name.tag.constant.numeric", + "t": "constant.entity.name.numeric.tag.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.entity.name.tag.separator.key-value.constant.numeric", + "t": "constant.entity.key-value.name.numeric.punctuation.separator.tag.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " 5.4", - "t": "yaml.constant.numeric", + "t": "constant.numeric.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "spotSize", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " 1mm", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "- ", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "step", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " *id001 ", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "#", - "t": "comment.line.number-sign.yaml.punctuation.definition", + "t": "comment.definition.line.number-sign.punctuation.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": " refers to the first step (with anchor &id001)", "t": "comment.line.number-sign.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.comment rgb(96, 139, 78)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.comment rgb(0, 128, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, { "c": "- ", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "step", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " *id001", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "spotSize", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " 2mm ", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "- ", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "step", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " *id002", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "-", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "{", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "name", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " John Smith", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": ", ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "age", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " 33", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "}", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "- ", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "name", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " Mary Smith", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "age", - "t": "yaml.entity.name.tag.constant.numeric", + "t": "constant.entity.name.numeric.tag.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.entity.name.tag.separator.key-value.constant.numeric", + "t": "constant.entity.key-value.name.numeric.punctuation.separator.tag.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " 27", - "t": "yaml.constant.numeric", + "t": "constant.numeric.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.constant.numeric rgb(181, 206, 168)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.constant.numeric rgb(9, 136, 90)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.constant.numeric rgb(181, 206, 168)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.constant.numeric rgb(9, 136, 90)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.constant.numeric rgb(181, 206, 168)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "men", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": "[John Smith, Bill Jones]", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "women", - "t": "yaml.string.unquoted.entity.name.tag", + "t": "entity.name.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": ":", - "t": "yaml.punctuation.string.unquoted.entity.name.tag.separator.key-value", + "t": "entity.key-value.name.punctuation.separator.string.tag.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.tag rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.tag rgb(128, 0, 0)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.entity.name.tag rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.entity.name.tag rgb(128, 0, 0)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.entity.name.tag rgb(86, 156, 214)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " Mary Smith", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " ", "t": "", "r": { - "dark_plus": ".vs-dark .token", - "light_plus": ".vs .token", - "dark_vs": ".vs-dark .token", - "light_vs": ".vs .token", - "hc_black": ".hc-black .token" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "-", - "t": "yaml.punctuation.definition.string.unquoted.entry", + "t": "definition.entry.punctuation.string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } }, { "c": " Susan Williams", - "t": "yaml.string.unquoted", + "t": "string.unquoted.yaml", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string.yaml rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string.yaml rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" } } ] \ No newline at end of file From 2cf239dc510027854d31fcab4938d13d191b90ba Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Tue, 12 Apr 2016 11:32:01 +0200 Subject: [PATCH 043/117] fixes #4881: [cpp] Switching to Atom's language-c for C/C++ syntax highlighting --- extensions/cpp/OSSREADME.json | 24 +- extensions/cpp/package.json | 6 +- extensions/cpp/syntaxes/c++.json | 387 ++++++ extensions/cpp/syntaxes/c++.plist | 583 -------- extensions/cpp/syntaxes/c.json | 916 +++++++++++++ extensions/cpp/syntaxes/c.plist | 1189 ----------------- .../cpp/test/colorize-results/test_c.json | 100 +- .../cpp/test/colorize-results/test_cc.json | 76 +- .../cpp/test/colorize-results/test_cpp.json | 135 +- .../test/colorize-results/test_m.json | 66 +- .../colorize-fixtures/{tets.py => test.py} | 0 .../{tets_py.json => test_py.json} | 0 extensions/ruby/syntaxes/Ruby.plist | 6 +- 13 files changed, 1475 insertions(+), 2013 deletions(-) create mode 100644 extensions/cpp/syntaxes/c++.json delete mode 100644 extensions/cpp/syntaxes/c++.plist create mode 100644 extensions/cpp/syntaxes/c.json delete mode 100644 extensions/cpp/syntaxes/c.plist rename extensions/python/test/colorize-fixtures/{tets.py => test.py} (100%) rename extensions/python/test/colorize-results/{tets_py.json => test_py.json} (100%) diff --git a/extensions/cpp/OSSREADME.json b/extensions/cpp/OSSREADME.json index 490c6a3d65c..8993b5b25fa 100644 --- a/extensions/cpp/OSSREADME.json +++ b/extensions/cpp/OSSREADME.json @@ -1,22 +1,8 @@ // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: [{ - "name": "textmate/c.tmbundle", - "version": "0.0.0", - "license": "TextMate Bundle License", - "repositoryURL": "https://github.com/textmate/c.tmbundle", - "licenseDetail": [ - "Copyright (c) textmate-c.tmbundle authors", - "", - "If not otherwise specified (see below), files in this repository fall under the following license:", - "", - "Permission to copy, use, modify, sell and distribute this", - "software is granted. This software is provided \"as is\" without", - "express or implied warranty, and with no claim as to its", - "suitability for any purpose.", - "", - "An exception is made for files in readable text which contain their own license information,", - "or files where an accompanying file exists (in the same directory) with a \"-license\" suffix added", - "to the base-name name of the original file, and an extension of txt, html, or similar. For example", - "\"tidy\" is accompanied by \"tidy-license.txt\"." - ] + "name": "language-c", + "version": "0.51.3", + "license": "MIT", + "repositoryURL": "https://github.com/atom/language-c", + "description": "The files syntaxes/c.json and syntaxes/c++.json were derived from the Atom package https://atom.io/packages/language-c which was originally converted from the C TextMate bundle https://github.com/textmate/c.tmbundle." }] diff --git a/extensions/cpp/package.json b/extensions/cpp/package.json index 0398d64c144..66a9a64a40f 100644 --- a/extensions/cpp/package.json +++ b/extensions/cpp/package.json @@ -19,12 +19,12 @@ "grammars": [{ "language": "c", "scopeName": "source.c", - "path": "./syntaxes/c.plist" + "path": "./syntaxes/c.json" }, { "language": "cpp", - "scopeName": "source.c++", - "path": "./syntaxes/c++.plist" + "scopeName": "source.cpp", + "path": "./syntaxes/c++.json" }, { "scopeName": "source.c.platform", diff --git a/extensions/cpp/syntaxes/c++.json b/extensions/cpp/syntaxes/c++.json new file mode 100644 index 00000000000..4bde79ba0c4 --- /dev/null +++ b/extensions/cpp/syntaxes/c++.json @@ -0,0 +1,387 @@ +{ + "scopeName": "source.cpp", + "fileTypes": [ + "cc", + "cpp", + "cp", + "cxx", + "c++", + "cu", + "cuh", + "h", + "hh", + "hpp", + "hxx", + "h++", + "inl", + "ipp", + "tcc", + "tpp" + ], + "firstLineMatch": "-\\*-\\s*([Mm]ode: )?C\\+\\+;?\\s*-\\*-", + "name": "C++", + "patterns": [ + { + "include": "#special_block" + }, + { + "include": "source.c" + }, + { + "match": "\\b(friend|explicit|virtual)\\b", + "name": "storage.modifier.cpp" + }, + { + "match": "\\b(private:|protected:|public:)", + "name": "storage.modifier.cpp" + }, + { + "match": "\\b(catch|operator|try|throw|using)\\b", + "name": "keyword.control.cpp" + }, + { + "match": "\\bdelete\\b(\\s*\\[\\])?|\\bnew\\b(?!])", + "name": "keyword.control.cpp" + }, + { + "comment": "common C++ instance var naming idiom -- fMemberName", + "match": "\\b(f|m)[A-Z]\\w*\\b", + "name": "variable.other.readwrite.member.cpp" + }, + { + "match": "\\bthis\\b", + "name": "variable.language.this.cpp" + }, + { + "match": "\\bnullptr\\b", + "name": "variable.language.cpp" + }, + { + "match": "\\btemplate\\b\\s*", + "name": "storage.type.template.cpp" + }, + { + "match": "\\b(const_cast|dynamic_cast|reinterpret_cast|static_cast)\\b\\s*", + "name": "keyword.operator.cast.cpp" + }, + { + "match": "\\b(and|and_eq|bitand|bitor|compl|not|not_eq|or|or_eq|typeid|xor|xor_eq)\\b", + "name": "keyword.operator.cpp" + }, + { + "match": "\\b(class|decltype|wchar_t)\\b", + "name": "storage.type.cpp" + }, + { + "match": "\\b(constexpr|export|mutable|typename)\\b", + "name": "storage.modifier.cpp" + }, + { + "begin": "(?x)\n \t\t\t\t(?: ^ # begin-of-line\n \t\t\t\t | (?: (?", + "name": "meta.angle-brackets.cpp", + "patterns": [ + { + "include": "#angle_brackets" + }, + { + "include": "$base" + } + ] + }, + "block": { + "begin": "\\{", + "beginCaptures": { + "0": { + "name": "punctuation.section.block.begin.c" + } + }, + "end": "\\}", + "endCaptures": { + "0": { + "name": "punctuation.section.block.end.c" + } + }, + "name": "meta.block.cpp", + "patterns": [ + { + "captures": { + "1": { + "name": "support.function.any-method.c" + }, + "2": { + "name": "punctuation.definition.parameters.c" + } + }, + "match": "(?x)\n \t\t\t\t(\n \t\t\t\t\t(?!while|for|do|if|else|switch|catch|enumerate|return|r?iterate)(?: \\b[A-Za-z_][A-Za-z0-9_]*+\\b | :: )*+ # actual name\n \t\t\t\t)\n \t\t\t\t \\s*(\\()", + "name": "meta.function-call.c" + }, + { + "include": "$base" + } + ] + }, + "constructor": { + "patterns": [ + { + "begin": "(?x)\n \t\t\t\t(?: ^\\s*) # begin-of-line\n \t\t\t\t((?!while|for|do|if|else|switch|catch|enumerate|r?iterate)[A-Za-z_][A-Za-z0-9_:]*) # actual name\n \t\t\t\t \\s*(\\() # start bracket or end-of-line\n \t\t\t", + "beginCaptures": { + "1": { + "name": "entity.name.function.cpp" + }, + "2": { + "name": "punctuation.definition.parameters.begin.c" + } + }, + "end": "\\)", + "endCaptures": { + "0": { + "name": "punctuation.definition.parameters.end.c" + } + }, + "name": "meta.function.constructor.cpp", + "patterns": [ + { + "include": "$base" + } + ] + }, + { + "begin": "(?x)\n \t\t\t\t(:) # begin-of-line\n \t\t\t\t((?=\\s*[A-Za-z_][A-Za-z0-9_:]* # actual name\n \t\t\t\t \\s*(\\())) # start bracket or end-of-line\n \t\t\t", + "beginCaptures": { + "1": { + "name": "punctuation.definition.parameters.c" + } + }, + "end": "(?=\\{)", + "name": "meta.function.constructor.initializer-list.cpp", + "patterns": [ + { + "include": "$base" + } + ] + } + ] + }, + "special_block": { + "patterns": [ + { + "begin": "\\b(using)\\b\\s*(namespace)\\b\\s*((?:[_A-Za-z][_A-Za-z0-9]*\\b(::)?)*)", + "beginCaptures": { + "1": { + "name": "keyword.control.cpp" + }, + "2": { + "name": "storage.type.cpp" + }, + "3": { + "name": "entity.name.type.cpp" + } + }, + "end": "(;)", + "name": "meta.using-namespace-declaration.cpp" + }, + { + "begin": "\\b(namespace)\\b\\s*([_A-Za-z][_A-Za-z0-9]*\\b)?+", + "beginCaptures": { + "1": { + "name": "storage.type.cpp" + }, + "2": { + "name": "entity.name.type.cpp" + } + }, + "captures": { + "1": { + "name": "keyword.control.namespace.$2" + } + }, + "end": "(?<=\\})|(?=(;|,|\\(|\\)|>|\\[|\\]|=))", + "name": "meta.namespace-block.cpp", + "patterns": [ + { + "begin": "\\{", + "beginCaptures": { + "0": { + "name": "punctuation.definition.scope.cpp" + } + }, + "end": "\\}", + "endCaptures": { + "0": { + "name": "punctuation.definition.scope.cpp" + } + }, + "patterns": [ + { + "include": "#special_block" + }, + { + "include": "#constructor" + }, + { + "include": "$base" + } + ] + }, + { + "include": "$base" + } + ] + }, + { + "begin": "\\b(class|struct)\\b\\s*([_A-Za-z][_A-Za-z0-9]*\\b)?+(\\s*:\\s*(public|protected|private)\\s*([_A-Za-z][_A-Za-z0-9]*\\b)((\\s*,\\s*(public|protected|private)\\s*[_A-Za-z][_A-Za-z0-9]*\\b)*))?", + "beginCaptures": { + "1": { + "name": "storage.type.cpp" + }, + "2": { + "name": "entity.name.type.cpp" + }, + "4": { + "name": "storage.type.modifier.cpp" + }, + "5": { + "name": "entity.name.type.inherited.cpp" + }, + "6": { + "patterns": [ + { + "match": "(public|protected|private)", + "name": "storage.type.modifier.cpp" + }, + { + "match": "[_A-Za-z][_A-Za-z0-9]*", + "name": "entity.name.type.inherited.cpp" + } + ] + } + }, + "end": "(?<=\\})|(?=(;|\\(|\\)|>|\\[|\\]|=))", + "name": "meta.class-struct-block.cpp", + "patterns": [ + { + "include": "#angle_brackets" + }, + { + "begin": "\\{", + "beginCaptures": { + "0": { + "name": "punctuation.section.block.begin.cpp" + } + }, + "end": "(\\})(\\s*\\n)?", + "endCaptures": { + "1": { + "name": "punctuation.section.block.end.cpp" + }, + "2": { + "name": "invalid.illegal.you-forgot-semicolon.cpp" + } + }, + "patterns": [ + { + "include": "#special_block" + }, + { + "include": "#constructor" + }, + { + "include": "$base" + } + ] + }, + { + "include": "$base" + } + ] + }, + { + "begin": "\\b(extern)(?=\\s*\")", + "beginCaptures": { + "1": { + "name": "storage.modifier.cpp" + } + }, + "end": "(?<=\\})|(?=\\w)|(?=\\s*#\\s*endif\\b)", + "name": "meta.extern-block.cpp", + "patterns": [ + { + "begin": "\\{", + "beginCaptures": { + "0": { + "name": "punctuation.section.block.begin.c" + } + }, + "end": "\\}|(?=\\s*#\\s*endif\\b)", + "endCaptures": { + "0": { + "name": "punctuation.section.block.end.c" + } + }, + "patterns": [ + { + "include": "#special_block" + }, + { + "include": "$base" + } + ] + }, + { + "include": "$base" + } + ] + } + ] + } + } +} \ No newline at end of file diff --git a/extensions/cpp/syntaxes/c++.plist b/extensions/cpp/syntaxes/c++.plist deleted file mode 100644 index cabc704c171..00000000000 --- a/extensions/cpp/syntaxes/c++.plist +++ /dev/null @@ -1,583 +0,0 @@ - - - - - comment - I don't think anyone uses .hp. .cp tends to be paired with .h. (I could be wrong. :) -- chris - fileTypes - - cc - cpp - cp - cxx - c++ - C - h - hh - hpp - h++ - H - - firstLineMatch - -\*- C\+\+ -\*- - keyEquivalent - ^~C - name - C++ - patterns - - - include - #special_block - - - include - source.c - - - match - \b(friend|explicit|virtual)\b - name - storage.modifier.$1.c++ - - - match - \b(private|protected|public): - name - storage.modifier.$1.c++ - - - match - \b(catch|operator|try|throw|using)\b - name - keyword.control.c++ - - - match - \bdelete\b(\s*\[\])?|\bnew\b(?!]) - name - keyword.control.c++ - - - comment - common C++ instance var naming idiom -- fMemberName - match - \b(f|m)[A-Z]\w*\b - name - variable.other.readwrite.member.c++ - - - match - \b(this|nullptr)\b - name - variable.language.c++ - - - match - \btemplate\b\s* - name - storage.type.template.c++ - - - match - \b(const_cast|dynamic_cast|reinterpret_cast|static_cast)\b\s* - name - keyword.operator.cast.c++ - - - match - \b(alignof|alignas|and|and_eq|bitand|bitor|compl|not|not_eq|or|or_eq|typeid|xor|xor_eq)\b - name - keyword.operator.c++ - - - match - \b(class|wchar_t)\b - name - storage.type.c++ - - - match - \b(constexpr|export|mutable|typename|thread_local)\b - name - storage.modifier.c++ - - - begin - (?x) - (?: ^ # begin-of-line - | (?: (?<!else|new|=) ) # or word + space before name - ) - ((?:[A-Za-z_][A-Za-z0-9_]*::)*+~[A-Za-z_][A-Za-z0-9_]*) # actual name - \s*(\() # start bracket or end-of-line - - beginCaptures - - 1 - - name - entity.name.function.c++ - - 2 - - name - punctuation.definition.parameters.begin.c - - - end - \) - endCaptures - - 0 - - name - punctuation.definition.parameters.end.c - - - name - meta.function.destructor.c++ - patterns - - - include - $base - - - - - begin - (?x) - (?: ^ # begin-of-line - | (?: (?<!else|new|=) ) # or word + space before name - ) - ((?:[A-Za-z_][A-Za-z0-9_]*::)*+~[A-Za-z_][A-Za-z0-9_]*) # actual name - \s*(\() # terminating semi-colon - - beginCaptures - - 1 - - name - entity.name.function.c++ - - 2 - - name - punctuation.definition.parameters.begin.c - - - end - \) - endCaptures - - 0 - - name - punctuation.definition.parameters.end.c - - - name - meta.function.destructor.prototype.c++ - patterns - - - include - $base - - - - - repository - - angle_brackets - - begin - < - end - > - name - meta.angle-brackets.c++ - patterns - - - include - #angle_brackets - - - include - $base - - - - block - - begin - \{ - beginCaptures - - 0 - - name - punctuation.section.block.begin.c - - - end - \} - endCaptures - - 0 - - name - punctuation.section.block.end.c - - - name - meta.block.c++ - patterns - - - captures - - 1 - - name - support.function.any-method.c - - 2 - - name - punctuation.definition.parameters.c - - - match - (?x) - ( - (?!while|for|do|if|else|switch|catch|enumerate|return|r?iterate)(?: \b[A-Za-z_][A-Za-z0-9_]*+\b | :: )*+ # actual name - ) - \s*(\() - name - meta.function-call.c - - - include - $base - - - - constructor - - patterns - - - begin - (?x) - (?: ^\s*) # begin-of-line - ((?!while|for|do|if|else|switch|catch|enumerate|r?iterate)[A-Za-z_][A-Za-z0-9_:]*) # actual name - \s*(\() # start bracket or end-of-line - - beginCaptures - - 1 - - name - entity.name.function.c++ - - 2 - - name - punctuation.definition.parameters.begin.c - - - end - \) - endCaptures - - 0 - - name - punctuation.definition.parameters.end.c - - - name - meta.function.constructor.c++ - patterns - - - include - $base - - - - - begin - (?x) - (:) # begin-of-line - ((?=\s*[A-Za-z_][A-Za-z0-9_:]* # actual name - \s*(\())) # start bracket or end-of-line - - beginCaptures - - 1 - - name - punctuation.definition.parameters.c - - - end - (?=\{) - name - meta.function.constructor.initializer-list.c++ - patterns - - - include - $base - - - - - - special_block - - patterns - - - begin - \b(namespace)\b\s*([_A-Za-z][_A-Za-z0-9]*\b)?+ - beginCaptures - - 1 - - name - storage.type.c++ - - 2 - - name - entity.name.type.c++ - - - captures - - 1 - - name - keyword.control.namespace.$2 - - - end - (?<=\})|(?=(;|,|\(|\)|>|\[|\]|=)) - name - meta.namespace-block${2:+.$2}.c++ - patterns - - - begin - \{ - beginCaptures - - 0 - - name - punctuation.definition.scope.c++ - - - end - \} - endCaptures - - 0 - - name - punctuation.definition.scope.c++ - - - patterns - - - include - #special_block - - - include - #constructor - - - include - $base - - - - - include - $base - - - - - begin - \b(class|struct)\b\s*([_A-Za-z][_A-Za-z0-9]*\b)?+(\s*:\s*(public|protected|private)\s*([_A-Za-z][_A-Za-z0-9]*\b)((\s*,\s*(public|protected|private)\s*[_A-Za-z][_A-Za-z0-9]*\b)*))? - beginCaptures - - 1 - - name - storage.type.c++ - - 2 - - name - entity.name.type.c++ - - 4 - - name - storage.type.modifier.c++ - - 5 - - name - entity.name.type.inherited.c++ - - 6 - - patterns - - - match - (public|protected|private) - name - storage.type.modifier.c++ - - - match - [_A-Za-z][_A-Za-z0-9]* - name - entity.name.type.inherited.c++ - - - - - end - (?<=\})|(?=(;|\(|\)|>|\[|\]|=)) - name - meta.class-struct-block.c++ - patterns - - - include - #angle_brackets - - - begin - \{ - beginCaptures - - 0 - - name - punctuation.section.block.begin.c++ - - - end - (\})(\s*\n)? - endCaptures - - 1 - - name - punctuation.definition.invalid.c++ - - 2 - - name - invalid.illegal.you-forgot-semicolon.c++ - - - patterns - - - include - #special_block - - - include - #constructor - - - include - $base - - - - - include - $base - - - - - begin - \b(extern)(?=\s*") - beginCaptures - - 1 - - name - storage.modifier.c++ - - - end - (?<=\})|(?=\w) - name - meta.extern-block.c++ - patterns - - - begin - \{ - beginCaptures - - 0 - - name - punctuation.section.block.begin.c - - - end - \} - endCaptures - - 0 - - name - punctuation.section.block.end.c - - - patterns - - - include - #special_block - - - include - $base - - - - - include - $base - - - - - - - scopeName - source.c++ - uuid - 26251B18-6B1D-11D9-AFDB-000D93589AF6 - - diff --git a/extensions/cpp/syntaxes/c.json b/extensions/cpp/syntaxes/c.json new file mode 100644 index 00000000000..07e54297d57 --- /dev/null +++ b/extensions/cpp/syntaxes/c.json @@ -0,0 +1,916 @@ +{ + "scopeName": "source.c", + "fileTypes": [ + "c", + "h" + ], + "firstLineMatch": "-\\*-\\s*([Mm]ode: )?C;?\\s*-\\*-", + "name": "C", + "patterns": [ + { + "include": "#preprocessor-rule-enabled" + }, + { + "include": "#preprocessor-rule-disabled" + }, + { + "include": "#preprocessor-rule-other" + }, + { + "include": "#comments" + }, + { + "match": "\\b(break|case|continue|default|do|else|for|goto|if|_Pragma|return|switch|while)\\b", + "name": "keyword.control.c" + }, + { + "match": "\\b(asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void)\\b", + "name": "storage.type.c" + }, + { + "match": "\\b(const|extern|register|restrict|static|volatile|inline)\\b", + "name": "storage.modifier.c" + }, + { + "comment": "common C constant naming idiom -- kConstantVariable", + "match": "\\bk[A-Z]\\w*\\b", + "name": "constant.other.variable.mac-classic.c" + }, + { + "match": "\\bg[A-Z]\\w*\\b", + "name": "variable.other.readwrite.global.mac-classic.c" + }, + { + "match": "\\bs[A-Z]\\w*\\b", + "name": "variable.other.readwrite.static.mac-classic.c" + }, + { + "match": "\\b(NULL|true|false|TRUE|FALSE)\\b", + "name": "constant.language.c" + }, + { + "include": "#sizeof" + }, + { + "include": "#numbers" + }, + { + "include": "#strings" + }, + { + "begin": "(?x)\n^\\s* ((\\#)\\s*define) \\s+ # define\n((?[a-zA-Z_][a-zA-Z0-9_]*)) # macro name\n(?:\n (\\()\n (\n \\s* \\g \\s* # first argument\n ((,) \\s* \\g \\s*)* # additional arguments\n (?:\\.\\.\\.)? # varargs ellipsis?\n )\n (\\))\n)?", + "beginCaptures": { + "1": { + "name": "keyword.control.directive.define.c" + }, + "2": { + "name": "punctuation.definition.directive.c" + }, + "3": { + "name": "entity.name.function.preprocessor.c" + }, + "5": { + "name": "punctuation.definition.parameters.begin.c" + }, + "6": { + "name": "variable.parameter.preprocessor.c" + }, + "8": { + "name": "punctuation.separator.parameters.c" + }, + "9": { + "name": "punctuation.definition.parameters.end.c" + } + }, + "end": "(?=(?://|/\\*))|(?", + "endCaptures": { + "0": { + "name": "punctuation.definition.string.end.c" + } + }, + "name": "string.quoted.other.lt-gt.include.c" + } + ] + }, + { + "include": "#pragma-mark" + }, + { + "begin": "^\\s*((#)\\s*line)\\b", + "beginCaptures": { + "1": { + "name": "keyword.control.directive.line.c" + }, + "2": { + "name": "punctuation.definition.directive.c" + } + }, + "end": "(?=(?://|/\\*))|(?]) # type modifier before name\n )\n)\n(\\s*)(?!(while|for|do|if|else|switch|catch|enumerate|return|sizeof|[cr]?iterate)\\s*\\()\n(\n (?:[A-Za-z_][A-Za-z0-9_]*+|::)++ # actual name\n |\n (?:(?<=operator)(?:[-*&<>=+!]+|\\(\\)|\\[\\])) # if it is a C++ operator\n)\n\\s*(?=\\()", + "beginCaptures": { + "1": { + "name": "punctuation.whitespace.function.leading.c" + }, + "3": { + "name": "entity.name.function.c" + }, + "4": { + "name": "punctuation.definition.parameters.c" + } + }, + "end": "(?<=\\})|(?=#)|(;)", + "name": "meta.function.c", + "patterns": [ + { + "include": "#comments" + }, + { + "include": "#parens" + }, + { + "match": "\\b(const|override|final|noexcept)\\b", + "name": "storage.modifier.c" + }, + { + "include": "#block" + } + ] + }, + { + "include": "#line_continuation_character" + } + ], + "repository": { + "access": { + "captures": { + "1": { + "name": "punctuation.separator.variable-access.c" + }, + "2": { + "name": "variable.other.dot-access.c" + } + }, + "match": "(\\.)([a-zA-Z_][a-zA-Z_0-9]*)\\b(?!\\s*\\()" + }, + "block": { + "patterns": [ + { + "begin": "\\{", + "beginCaptures": { + "0": { + "name": "punctuation.section.block.begin.c" + } + }, + "end": "\\}|(?=\\s*#\\s*endif\\b)", + "endCaptures": { + "0": { + "name": "punctuation.section.block.end.c" + } + }, + "name": "meta.block.c", + "patterns": [ + { + "include": "#block_innards" + } + ] + } + ] + }, + "block_innards": { + "patterns": [ + { + "include": "#preprocessor-rule-enabled-block" + }, + { + "include": "#preprocessor-rule-disabled-block" + }, + { + "include": "#preprocessor-rule-other-block" + }, + { + "include": "#sizeof" + }, + { + "include": "#access" + }, + { + "include": "#libc" + }, + { + "include": "#c_function_call" + }, + { + "captures": { + "1": { + "name": "variable.other.c" + }, + "2": { + "name": "punctuation.definition.parameters.c" + } + }, + "match": "(?x)\n\t\t\t (?x)\n\t\t\t(?: \n\t\t\t (?: (?= \\s ) (?=+!]+ | \\(\\) | \\[\\] ) ) # if it is a C++ operator\n\t\t\t)\n\t\t\t \\s*(\\()", + "name": "meta.initialization.c" + }, + { + "include": "#block" + }, + { + "include": "$base" + } + ] + }, + "c_function_call": { + "captures": { + "1": { + "name": "punctuation.whitespace.function-call.leading.c" + }, + "2": { + "name": "support.function.any-method.c" + }, + "4": { + "name": "punctuation.definition.parameters.c" + } + }, + "match": "(?x) (?: (?= \\s ) (?:(?<=else|new|return) | (? - - - - fileTypes - - c - h - - firstLineMatch - -[*]-( Mode:)? C -[*]- - keyEquivalent - ^~C - name - C - patterns - - - include - #preprocessor-rule-enabled - - - include - #preprocessor-rule-disabled - - - include - #preprocessor-rule-other - - - include - #comments - - - include - source.c.platform - - - match - \b(break|case|continue|default|do|else|for|goto|if|_Pragma|return|switch|while)\b - name - keyword.control.c - - - match - \b(asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void)\b - name - storage.type.c - - - match - \b(const|extern|register|restrict|static|volatile|inline)\b - name - storage.modifier.c - - - comment - common C constant naming idiom -- kConstantVariable - match - \bk[A-Z]\w*\b - name - constant.other.variable.mac-classic.c - - - match - \bg[A-Z]\w*\b - name - variable.other.readwrite.global.mac-classic.c - - - match - \bs[A-Z]\w*\b - name - variable.other.readwrite.static.mac-classic.c - - - match - \b(NULL|true|false|TRUE|FALSE)\b - name - constant.language.c - - - include - #sizeof - - - captures - - inc - - name - invalid.illegal.digit-separator-should-not-be-last.c++ - - - match - (?x)\b - ( (?i: - 0x ( \h+ ( ' \h+ )* )? # Hexadecimal - | 0b ( [0-1]+ ( ' [0-1]+ )* )? # Binary - | 0 ( [0-7]+ ( ' [0-7]+ )* ) # Octal - | ( [0-9]+ ( ' [0-9]+ )* ) # Decimal - ) - ( ([uUfF] | u?ll? | U?LL?)\b | (?<inc>') | \b ) - | ( [0-9]+ ( ' [0-9]+ )* )? - (?i: - \. ( [0-9]+ ( ' [0-9]+ )* ) E(\+|-)? ( [0-9]+ ( ' [0-9]+ )* ) - | \. ( [0-9]+ ( ' [0-9]+ )* ) - | E(\+|-)? ( [0-9]+ ( ' [0-9]+ )* ) - ) - ( (?<inc>') | \b ) - ) - name - constant.numeric.c - - - begin - " - beginCaptures - - 0 - - name - punctuation.definition.string.begin.c - - - end - " - endCaptures - - 0 - - name - punctuation.definition.string.end.c - - - name - string.quoted.double.c - patterns - - - include - #string_escaped_char - - - include - #string_placeholder - - - - - begin - ' - beginCaptures - - 0 - - name - punctuation.definition.string.begin.c - - - end - ' - endCaptures - - 0 - - name - punctuation.definition.string.end.c - - - name - string.quoted.single.c - patterns - - - include - #string_escaped_char - - - - - begin - (?x) - ^\s*\#\s*(define)\s+ # define - ((?<id>[a-zA-Z_][a-zA-Z0-9_]*)) # macro name - (?: # and optionally: - (\() # an open parenthesis - ( - \s* \g<id> \s* # first argument - ((,) \s* \g<id> \s*)* # additional arguments - (?:\.\.\.)? # varargs ellipsis? - ) - (\)) # a close parenthesis - )? - - beginCaptures - - 1 - - name - keyword.control.import.define.c - - 2 - - name - entity.name.function.preprocessor.c - - 4 - - name - punctuation.definition.parameters.begin.c - - 5 - - name - variable.parameter.preprocessor.c - - 7 - - name - punctuation.separator.parameters.c - - 8 - - name - punctuation.definition.parameters.end.c - - - end - (?=(?://|/\*))|$ - name - meta.preprocessor.macro.c - patterns - - - match - (?>\\\s*\n) - name - punctuation.separator.continuation.c - - - include - $base - - - - - begin - ^\s*#\s*(error|warning)\b - captures - - 1 - - name - keyword.control.import.error.c - - - end - $ - name - meta.preprocessor.diagnostic.c - patterns - - - match - (?>\\\s*\n) - name - punctuation.separator.continuation.c - - - - - begin - ^\s*#\s*(include|import)\b - captures - - 1 - - name - keyword.control.import.include.c - - - end - (?=(?://|/\*))|$ - name - meta.preprocessor.c.include - patterns - - - match - (?>\\\s*\n) - name - punctuation.separator.continuation.c - - - begin - " - beginCaptures - - 0 - - name - punctuation.definition.string.begin.c - - - end - " - endCaptures - - 0 - - name - punctuation.definition.string.end.c - - - name - string.quoted.double.include.c - - - begin - < - beginCaptures - - 0 - - name - punctuation.definition.string.begin.c - - - end - > - endCaptures - - 0 - - name - punctuation.definition.string.end.c - - - name - string.quoted.other.lt-gt.include.c - - - - - include - #pragma-mark - - - begin - ^\s*#\s*(define|defined|elif|else|if|ifdef|ifndef|line|pragma|undef)\b - captures - - 1 - - name - keyword.control.import.c - - - end - (?=(?://|/\*))|$ - name - meta.preprocessor.c - patterns - - - match - (?>\\\s*\n) - name - punctuation.separator.continuation.c - - - - - comment - Reserved POSIX types - match - \b([a-z0-9_]+_t)\b - name - support.type.posix-reserved.c - - - include - #block - - - begin - (?x) - (?: ^ # begin-of-line - | - (?: (?= \s ) (?<!else|new|return) (?<=\w) # or word + space before name - | (?= \s*[A-Za-z_] ) (?<!&&) (?<=[*&>]) # or type modifier before name - ) - ) - (\s*) (?!(while|for|do|if|else|switch|catch|enumerate|return|sizeof|[cr]?iterate)\s*\() - ( - (?: [A-Za-z_][A-Za-z0-9_]*+ | :: )++ | # actual name - (?: (?<=operator) (?: [-*&<>=+!]+ | \(\) | \[\] ) ) # if it is a C++ operator - ) - \s*(?=\() - beginCaptures - - 1 - - name - punctuation.whitespace.function.leading.c - - 3 - - name - entity.name.function.c - - 4 - - name - punctuation.definition.parameters.c - - - end - (?<=\})|(?=#)|(;) - name - meta.function.c - patterns - - - include - #comments - - - include - #parens - - - match - \b(const|final|override|noexcept)\b - name - storage.modifier.$1.c++ - - - include - #block - - - - - repository - - access - - captures - - 1 - - name - punctuation.separator.variable-access.c - - 2 - - name - variable.other.dot-access.c - - - match - (\.)([a-zA-Z_][a-zA-Z_0-9]*)\b(?!\s*\() - - block - - patterns - - - begin - \{ - beginCaptures - - 0 - - name - punctuation.section.block.begin.c - - - end - \} - endCaptures - - 0 - - name - punctuation.section.block.end.c - - - name - meta.block.c - patterns - - - include - #block_innards - - - - - - block_innards - - patterns - - - include - #preprocessor-rule-enabled-block - - - include - #preprocessor-rule-disabled-block - - - include - #preprocessor-rule-other-block - - - include - #sizeof - - - include - #access - - - include - source.c.platform#functions - - - include - #c_function_call - - - captures - - 1 - - name - variable.other.c - - 2 - - name - punctuation.definition.parameters.c - - - match - (?x) - (?x) - (?: - (?: (?= \s ) (?<!else|new|return) (?<=\w)\s+ # or word + space before name - ) - ) - ( - (?: [A-Za-z_][A-Za-z0-9_]*+ | :: )++ | # actual name - (?: (?<=operator) (?: [-*&<>=+!]+ | \(\) | \[\] ) )? # if it is a C++ operator - ) - \s*(\() - name - meta.initialization.c - - - include - #block - - - include - $base - - - - c_function_call - - captures - - 1 - - name - punctuation.whitespace.function-call.leading.c - - 2 - - name - support.function.any-method.c - - 3 - - name - punctuation.definition.parameters.c - - - match - (?x) (?: (?= \s ) (?:(?<=else|new|return) | (?<!\w)) (\s+))? - (\b - (?!(while|for|do|if|else|switch|catch|enumerate|return|sizeof|[cr]?iterate)\s*\()(?:(?!NS)[A-Za-z_][A-Za-z0-9_]*+\b | :: )++ # actual name - ) - \s*(\() - name - meta.function-call.c - - comments - - patterns - - - captures - - 1 - - name - meta.toc-list.banner.block.c - - - match - ^/\* =(\s*.*?)\s*= \*/$\n? - name - comment.block.c - - - begin - /\* - beginCaptures - - 0 - - name - punctuation.definition.comment.begin.c - - - end - \*/ - endCaptures - - 0 - - name - punctuation.definition.comment.end.c - - - name - comment.block.c - - - match - \*/.*\n - name - invalid.illegal.stray-comment-end.c - - - captures - - 1 - - name - meta.toc-list.banner.line.c - - - match - ^// =(\s*.*?)\s*=\s*$\n? - name - comment.line.banner.c++ - - - begin - (^[ \t]+)?(?=//) - beginCaptures - - 1 - - name - punctuation.whitespace.comment.leading.c++ - - - end - (?!\G) - patterns - - - begin - // - beginCaptures - - 0 - - name - punctuation.definition.comment.c++ - - - end - \n - name - comment.line.double-slash.c++ - patterns - - - match - (?>\\\s*\n) - name - punctuation.separator.continuation.c++ - - - - - - - - disabled - - begin - ^\s*#\s*if(n?def)?\b.*$ - comment - eat nested preprocessor if(def)s - end - ^\s*#\s*endif\b - patterns - - - include - #disabled - - - include - #pragma-mark - - - - parens - - begin - \( - beginCaptures - - 0 - - name - punctuation.section.parens.begin.c - - - end - \) - endCaptures - - 0 - - name - punctuation.section.parens.end.c - - - name - meta.parens.c - patterns - - - include - $base - - - - pragma-mark - - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.pragma.c - - 3 - - name - meta.toc-list.pragma-mark.c - - - match - ^\s*(#\s*(pragma\s+mark)\s+(.*)) - name - meta.section - - preprocessor-rule-disabled - - begin - ^\s*(#(if)\s+(0)\b).* - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.if.c - - 3 - - name - constant.numeric.preprocessor.c - - - end - ^\s*(#\s*(endif)\b) - patterns - - - begin - ^\s*(#\s*(else)\b) - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.else.c - - - end - (?=^\s*#\s*endif\b) - patterns - - - include - $base - - - - - begin - - end - (?=^\s*#\s*(else|endif)\b) - name - comment.block.preprocessor.if-branch - patterns - - - include - #disabled - - - include - #pragma-mark - - - - - - preprocessor-rule-disabled-block - - begin - ^\s*(#(if)\s+(0)\b).* - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.if.c - - 3 - - name - constant.numeric.preprocessor.c - - - end - ^\s*(#\s*(endif)\b) - patterns - - - begin - ^\s*(#\s*(else)\b) - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.else.c - - - end - (?=^\s*#\s*endif\b) - patterns - - - include - #block_innards - - - - - begin - - end - (?=^\s*#\s*(else|endif)\b) - name - comment.block.preprocessor.if-branch.in-block - patterns - - - include - #disabled - - - include - #pragma-mark - - - - - - preprocessor-rule-enabled - - begin - ^\s*(#(if)\s+(0*1)\b) - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.if.c - - 3 - - name - constant.numeric.preprocessor.c - - - end - ^\s*(#\s*(endif)\b) - patterns - - - begin - ^\s*(#\s*(else)\b).* - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.else.c - - - contentName - comment.block.preprocessor.else-branch - end - (?=^\s*#\s*endif\b) - patterns - - - include - #disabled - - - include - #pragma-mark - - - - - begin - - end - (?=^\s*#\s*(else|endif)\b) - patterns - - - include - $base - - - - - - preprocessor-rule-enabled-block - - begin - ^\s*(#(if)\s+(0*1)\b) - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.if.c - - 3 - - name - constant.numeric.preprocessor.c - - - end - ^\s*(#\s*(endif)\b) - patterns - - - begin - ^\s*(#\s*(else)\b).* - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.else.c - - - contentName - comment.block.preprocessor.else-branch.in-block - end - (?=^\s*#\s*endif\b) - patterns - - - include - #disabled - - - include - #pragma-mark - - - - - begin - - end - (?=^\s*#\s*(else|endif)\b) - patterns - - - include - #block_innards - - - - - - preprocessor-rule-other - - begin - ^\s*(#\s*(if(n?def)?)\b.*?(?:(?=(?://|/\*))|$)) - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.c - - - end - ^\s*(#\s*(endif)\b) - patterns - - - include - $base - - - - preprocessor-rule-other-block - - begin - ^\s*(#\s*(if(n?def)?)\b.*?(?:(?=(?://|/\*))|$)) - captures - - 1 - - name - meta.preprocessor.c - - 2 - - name - keyword.control.import.c - - - end - ^\s*(#\s*(endif)\b) - patterns - - - include - #block_innards - - - - sizeof - - match - \b(sizeof)\b - name - keyword.operator.sizeof.c - - string_escaped_char - - patterns - - - match - \\(\\|[abefnprtv'"?]|[0-3]\d{0,2}|[4-7]\d?|x[a-fA-F0-9]{0,2}|u[a-fA-F0-9]{0,4}|U[a-fA-F0-9]{0,8}) - name - constant.character.escape.c - - - match - \\. - name - invalid.illegal.unknown-escape.c - - - - string_placeholder - - patterns - - - match - (?x)% - (\d+\$)? # field (argument #) - [#0\- +']* # flags - [,;:_]? # separator character (AltiVec) - ((-?\d+)|\*(-?\d+\$)?)? # minimum field width - (\.((-?\d+)|\*(-?\d+\$)?)?)? # precision - (hh|h|ll|l|j|t|z|q|L|vh|vl|v|hv|hl)? # length modifier - [diouxXDOUeEfFgGaACcSspn%] # conversion type - - name - constant.other.placeholder.c - - - match - % - name - invalid.illegal.placeholder.c - - - - - scopeName - source.c - uuid - 25066DC2-6B1D-11D9-9D5B-000D93589AF6 - - \ No newline at end of file diff --git a/extensions/cpp/test/colorize-results/test_c.json b/extensions/cpp/test/colorize-results/test_c.json index ab62e2e0938..6c157e605c0 100644 --- a/extensions/cpp/test/colorize-results/test_c.json +++ b/extensions/cpp/test/colorize-results/test_c.json @@ -67,21 +67,21 @@ }, { "c": "#", - "t": "c.include.meta.preprocessor", + "t": "c.control.definition.directive.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "include", - "t": "c.control.import.include.keyword.meta.preprocessor", + "t": "c.control.directive.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -133,21 +133,21 @@ }, { "c": "#", - "t": "c.include.meta.preprocessor", + "t": "c.control.definition.directive.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "include", - "t": "c.control.import.include.keyword.meta.preprocessor", + "t": "c.control.directive.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -353,7 +353,7 @@ }, { "c": "printf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -430,7 +430,7 @@ }, { "c": "scanf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -550,29 +550,7 @@ } }, { - "c": " ", - "t": "block.c.function.initialization.meta", - "r": { - "dark_plus": ".vs-dark .token rgb(212, 212, 212)", - "light_plus": ".vs .token rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token rgb(212, 212, 212)", - "light_vs": ".vs .token rgb(0, 0, 0)", - "hc_black": ".hc-black .token rgb(255, 255, 255)" - } - }, - { - "c": "(", - "t": "block.c.definition.function.initialization.meta.parameters.punctuation", - "r": { - "dark_plus": ".vs-dark .token rgb(212, 212, 212)", - "light_plus": ".vs .token rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token rgb(212, 212, 212)", - "light_vs": ".vs .token rgb(0, 0, 0)", - "hc_black": ".hc-black .token rgb(255, 255, 255)" - } - }, - { - "c": "determinant>", + "c": " (determinant>", "t": "block.c.function.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", @@ -639,7 +617,7 @@ }, { "c": "sqrt", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -694,7 +672,7 @@ }, { "c": "sqrt", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -749,7 +727,7 @@ }, { "c": "printf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -913,29 +891,7 @@ } }, { - "c": " ", - "t": "block.c.function.initialization.meta", - "r": { - "dark_plus": ".vs-dark .token rgb(212, 212, 212)", - "light_plus": ".vs .token rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token rgb(212, 212, 212)", - "light_vs": ".vs .token rgb(0, 0, 0)", - "hc_black": ".hc-black .token rgb(255, 255, 255)" - } - }, - { - "c": "(", - "t": "block.c.definition.function.initialization.meta.parameters.punctuation", - "r": { - "dark_plus": ".vs-dark .token rgb(212, 212, 212)", - "light_plus": ".vs .token rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token rgb(212, 212, 212)", - "light_vs": ".vs .token rgb(0, 0, 0)", - "hc_black": ".hc-black .token rgb(255, 255, 255)" - } - }, - { - "c": "determinant==", + "c": " (determinant==", "t": "block.c.function.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", @@ -1035,7 +991,7 @@ }, { "c": "printf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -1255,7 +1211,7 @@ }, { "c": "sqrt", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -1310,7 +1266,7 @@ }, { "c": "printf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", diff --git a/extensions/cpp/test/colorize-results/test_cc.json b/extensions/cpp/test/colorize-results/test_cc.json index 2300076436f..e696ae20d7f 100644 --- a/extensions/cpp/test/colorize-results/test_cc.json +++ b/extensions/cpp/test/colorize-results/test_cc.json @@ -1,21 +1,21 @@ [ { "c": "#", - "t": "c.meta.preprocessor", + "t": "c.conditional.control.definition.directive.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "if", - "t": "c.control.import.keyword.meta.preprocessor", + "t": "c.conditional.control.directive.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -463,21 +463,21 @@ }, { "c": "#", - "t": "c.meta.preprocessor", + "t": "c.conditional.control.definition.directive.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "endif", - "t": "c.control.import.keyword.meta.preprocessor", + "t": "c.conditional.control.directive.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -606,7 +606,7 @@ }, { "c": "(", - "t": "block.c.function.function-call.meta", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -683,7 +683,7 @@ }, { "c": "(", - "t": "block.c.function.function-call.meta", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -826,7 +826,7 @@ }, { "c": " ", - "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", + "t": "block.c.comment.cpp.function.leading.meta.punctuation.whitespace", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", @@ -837,7 +837,7 @@ }, { "c": "//", - "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", + "t": "block.c.comment.cpp.definition.double-slash.function.line.meta.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -848,7 +848,7 @@ }, { "c": " everything from this point on is interpeted as a string literal...", - "t": "block.c.c++.comment.double-slash.function.line.meta", + "t": "block.c.comment.cpp.double-slash.function.line.meta", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -903,7 +903,7 @@ }, { "c": "(", - "t": "block.c.function.function-call.meta", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -914,7 +914,7 @@ }, { "c": "new", - "t": "block.c.c++.control.function.keyword.meta", + "t": "block.c.control.cpp.function.keyword.meta", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", @@ -936,7 +936,7 @@ }, { "c": " ", - "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", + "t": "block.c.comment.cpp.function.leading.meta.punctuation.whitespace", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", @@ -947,7 +947,7 @@ }, { "c": "//", - "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", + "t": "block.c.comment.cpp.definition.double-slash.function.line.meta.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -958,7 +958,7 @@ }, { "c": " sadness.", - "t": "block.c.c++.comment.double-slash.function.line.meta", + "t": "block.c.comment.cpp.double-slash.function.line.meta", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -980,7 +980,7 @@ }, { "c": "sprintf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -1178,7 +1178,7 @@ }, { "c": "printf", - "t": "block.c.clib.function.meta.support", + "t": "C99.block.c.function.meta.support", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -1244,7 +1244,7 @@ }, { "c": " ", - "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", + "t": "block.c.comment.cpp.function.leading.meta.punctuation.whitespace", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", @@ -1255,7 +1255,7 @@ }, { "c": "//", - "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", + "t": "block.c.comment.cpp.definition.double-slash.function.line.meta.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -1266,7 +1266,7 @@ }, { "c": " the rest of", - "t": "block.c.c++.comment.double-slash.function.line.meta", + "t": "block.c.comment.cpp.double-slash.function.line.meta", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -1299,7 +1299,7 @@ }, { "c": "(", - "t": "block.c.function.function-call.meta", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -1420,7 +1420,7 @@ }, { "c": "(", - "t": "block.c.function.function-call.meta", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -1475,7 +1475,7 @@ }, { "c": " ", - "t": "block.c.c++.comment.function.leading.meta.punctuation.whitespace", + "t": "block.c.comment.cpp.function.leading.meta.punctuation.whitespace", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", @@ -1486,7 +1486,7 @@ }, { "c": "//", - "t": "block.c.c++.comment.definition.double-slash.function.line.meta.punctuation", + "t": "block.c.comment.cpp.definition.double-slash.function.line.meta.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -1497,7 +1497,7 @@ }, { "c": " the rest of", - "t": "block.c.c++.comment.double-slash.function.line.meta", + "t": "block.c.comment.cpp.double-slash.function.line.meta", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", diff --git a/extensions/cpp/test/colorize-results/test_cpp.json b/extensions/cpp/test/colorize-results/test_cpp.json index f1a367eb6e4..42d56890882 100644 --- a/extensions/cpp/test/colorize-results/test_cpp.json +++ b/extensions/cpp/test/colorize-results/test_cpp.json @@ -1,7 +1,7 @@ [ { "c": "//", - "t": "c++.comment.definition.double-slash.line.punctuation", + "t": "comment.cpp.definition.double-slash.line.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -12,7 +12,7 @@ }, { "c": " classes example", - "t": "c++.comment.double-slash.line", + "t": "comment.cpp.double-slash.line", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -23,21 +23,21 @@ }, { "c": "#", - "t": "c.include.meta.preprocessor", + "t": "c.control.definition.directive.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "include", - "t": "c.control.import.include.keyword.meta.preprocessor", + "t": "c.control.directive.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -89,7 +89,7 @@ }, { "c": "using", - "t": "c++.control.keyword", + "t": "control.cpp.keyword.meta.using-namespace-declaration", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", @@ -100,7 +100,7 @@ }, { "c": " ", - "t": "", + "t": "cpp.meta.using-namespace-declaration", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -111,7 +111,7 @@ }, { "c": "namespace", - "t": "c++.meta.namespace-block${2:+.std}.storage.type", + "t": "cpp.meta.storage.type.using-namespace-declaration", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -122,7 +122,7 @@ }, { "c": " ", - "t": "c++.meta.namespace-block${2:+.std}", + "t": "cpp.meta.using-namespace-declaration", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -133,7 +133,7 @@ }, { "c": "std", - "t": "c++.entity.meta.name.namespace-block${2:+.std}.type", + "t": "cpp.entity.meta.name.type.using-namespace-declaration", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", @@ -144,18 +144,18 @@ }, { "c": ";", - "t": "$2.c++.control.keyword.meta.namespace.namespace-block${2:+.std}", + "t": "cpp.meta.using-namespace-declaration", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { "c": "class", - "t": "c++.class-struct-block.meta.storage.type", + "t": "class-struct-block.cpp.meta.storage.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -166,7 +166,7 @@ }, { "c": " ", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -177,7 +177,7 @@ }, { "c": "Rectangle", - "t": "c++.class-struct-block.entity.meta.name.type", + "t": "class-struct-block.cpp.entity.meta.name.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.type rgb(78, 201, 176)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.type rgb(38, 127, 153)", @@ -188,7 +188,7 @@ }, { "c": " ", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -199,7 +199,7 @@ }, { "c": "{", - "t": "begin.block.c++.class-struct-block.meta.punctuation.section", + "t": "begin.block.class-struct-block.cpp.meta.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -210,7 +210,7 @@ }, { "c": " ", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -221,7 +221,7 @@ }, { "c": "int", - "t": "c.c++.class-struct-block.meta.storage.type", + "t": "c.class-struct-block.cpp.meta.storage.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -232,7 +232,7 @@ }, { "c": " width, height;", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -243,7 +243,7 @@ }, { "c": " ", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -254,7 +254,7 @@ }, { "c": "public:", - "t": "c++.class-struct-block.meta.modifier.public.storage", + "t": "class-struct-block.cpp.meta.modifier.storage", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.modifier rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.modifier rgb(0, 0, 255)", @@ -265,7 +265,7 @@ }, { "c": " ", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -276,7 +276,7 @@ }, { "c": "void", - "t": "c.c++.class-struct-block.meta.storage.type", + "t": "c.class-struct-block.cpp.meta.storage.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -287,7 +287,7 @@ }, { "c": " ", - "t": "c.c++.class-struct-block.function.leading.meta.punctuation.whitespace", + "t": "c.class-struct-block.cpp.function.leading.meta.punctuation.whitespace", "r": { "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", @@ -298,7 +298,7 @@ }, { "c": "set_values", - "t": "c.c++.class-struct-block.entity.function.meta.name", + "t": "c.class-struct-block.cpp.entity.function.meta.name", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", @@ -309,7 +309,7 @@ }, { "c": " ", - "t": "c.c++.class-struct-block.function.meta", + "t": "c.class-struct-block.cpp.function.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -320,7 +320,7 @@ }, { "c": "(", - "t": "begin.c.c++.class-struct-block.function.meta.parens.punctuation.section", + "t": "begin.c.class-struct-block.cpp.function.meta.parens.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -331,7 +331,7 @@ }, { "c": "int", - "t": "c.c++.class-struct-block.function.meta.parens.storage.type", + "t": "c.class-struct-block.cpp.function.meta.parens.storage.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -342,7 +342,7 @@ }, { "c": ",", - "t": "c.c++.class-struct-block.function.meta.parens", + "t": "c.class-struct-block.cpp.function.meta.parens", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -353,7 +353,7 @@ }, { "c": "int", - "t": "c.c++.class-struct-block.function.meta.parens.storage.type", + "t": "c.class-struct-block.cpp.function.meta.parens.storage.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -364,7 +364,7 @@ }, { "c": ")", - "t": "c.c++.class-struct-block.end.function.meta.parens.punctuation.section", + "t": "c.class-struct-block.cpp.end.function.meta.parens.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -375,7 +375,7 @@ }, { "c": ";", - "t": "c.c++.class-struct-block.function.meta", + "t": "c.class-struct-block.cpp.function.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -386,7 +386,7 @@ }, { "c": " ", - "t": "c++.class-struct-block.meta", + "t": "class-struct-block.cpp.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -397,7 +397,7 @@ }, { "c": "int", - "t": "c.c++.class-struct-block.meta.storage.type", + "t": "c.class-struct-block.cpp.meta.storage.type", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.storage.type rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.storage.type rgb(0, 0, 255)", @@ -408,7 +408,7 @@ }, { "c": " ", - "t": "c.c++.class-struct-block.function.leading.meta.punctuation.whitespace", + "t": "c.class-struct-block.cpp.function.leading.meta.punctuation.whitespace", "r": { "dark_plus": ".vs-dark .token.whitespace rgba(227, 228, 226, 0.156863)", "light_plus": ".vs .token.whitespace rgba(51, 51, 51, 0.2)", @@ -419,7 +419,7 @@ }, { "c": "area", - "t": "c.c++.class-struct-block.entity.function.meta.name", + "t": "c.class-struct-block.cpp.entity.function.meta.name", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.entity.name.function rgb(220, 220, 170)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.entity.name.function rgb(121, 94, 38)", @@ -430,7 +430,7 @@ }, { "c": "(", - "t": "begin.c.c++.class-struct-block.function.meta.parens.punctuation.section", + "t": "begin.c.class-struct-block.cpp.function.meta.parens.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -441,7 +441,7 @@ }, { "c": ")", - "t": "c.c++.class-struct-block.end.function.meta.parens.punctuation.section", + "t": "c.class-struct-block.cpp.end.function.meta.parens.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -452,7 +452,7 @@ }, { "c": " ", - "t": "c.c++.class-struct-block.function.meta", + "t": "c.class-struct-block.cpp.function.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -463,7 +463,7 @@ }, { "c": "{", - "t": "begin.block.c.c++.class-struct-block.function.meta.punctuation.section", + "t": "begin.block.c.class-struct-block.cpp.function.meta.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -474,7 +474,7 @@ }, { "c": "return", - "t": "block.c.c++.class-struct-block.control.function.keyword.meta", + "t": "block.c.class-struct-block.control.cpp.function.keyword.meta", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", @@ -485,7 +485,7 @@ }, { "c": " width*height;", - "t": "block.c.c++.class-struct-block.function.meta", + "t": "block.c.class-struct-block.cpp.function.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -496,7 +496,7 @@ }, { "c": "}", - "t": "block.c.c++.class-struct-block.end.function.meta.punctuation.section", + "t": "block.c.class-struct-block.cpp.end.function.meta.punctuation.section", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", @@ -507,13 +507,13 @@ }, { "c": "}", - "t": "c++.class-struct-block.definition.invalid.meta.punctuation", + "t": "block.class-struct-block.cpp.end.meta.punctuation.section", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.invalid rgb(244, 71, 71)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.invalid rgb(205, 49, 49)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.invalid rgb(244, 71, 71)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.invalid rgb(205, 49, 49)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.invalid rgb(244, 71, 71)" + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, { @@ -814,7 +814,7 @@ } }, { - "c": " (", + "c": " ", "t": "block.c.function.function-call.meta", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", @@ -824,6 +824,17 @@ "hc_black": ".hc-black .token rgb(255, 255, 255)" } }, + { + "c": "(", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, { "c": "3", "t": "block.c.constant.function.meta.numeric", @@ -936,7 +947,7 @@ }, { "c": "(", - "t": "block.c.function.function-call.meta", + "t": "block.c.definition.function.function-call.meta.parameters.punctuation", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", "light_plus": ".vs .token rgb(0, 0, 0)", diff --git a/extensions/objective-c/test/colorize-results/test_m.json b/extensions/objective-c/test/colorize-results/test_m.json index f62947af7ca..572e28dc652 100644 --- a/extensions/objective-c/test/colorize-results/test_m.json +++ b/extensions/objective-c/test/colorize-results/test_m.json @@ -1,7 +1,7 @@ [ { "c": "//", - "t": "c++.comment.definition.double-slash.line.punctuation", + "t": "comment.cpp.definition.double-slash.line.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -12,7 +12,7 @@ }, { "c": "//", - "t": "c++.comment.definition.double-slash.line.punctuation", + "t": "comment.cpp.definition.double-slash.line.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -23,7 +23,7 @@ }, { "c": " Copyright (c) Microsoft Corporation. All rights reserved.", - "t": "c++.comment.double-slash.line", + "t": "comment.cpp.double-slash.line", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -34,7 +34,7 @@ }, { "c": "//", - "t": "c++.comment.definition.double-slash.line.punctuation", + "t": "comment.cpp.definition.double-slash.line.punctuation", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -45,18 +45,18 @@ }, { "c": "#", - "t": "c.include.meta.preprocessor", + "t": "c.control.definition.directive.import.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "import", - "t": "c.control.import.include.keyword.meta.preprocessor", + "t": "c.control.directive.import.include.keyword.meta.preprocessor", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", @@ -111,18 +111,18 @@ }, { "c": "#", - "t": "c.include.meta.preprocessor", + "t": "c.control.definition.directive.import.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.meta.preprocessor rgb(0, 0, 255)", - "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.meta.preprocessor rgb(86, 156, 214)", - "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.meta.preprocessor rgb(0, 0, 255)", - "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.meta.preprocessor rgb(86, 156, 214)" + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" } }, { "c": "import", - "t": "c.control.import.include.keyword.meta.preprocessor", + "t": "c.control.directive.import.include.keyword.meta.preprocessor", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", @@ -1100,29 +1100,7 @@ } }, { - "c": " ", - "t": "block.bracketed.c.function-call.function-with-body.implementation.initialization.meta.objc.scope", - "r": { - "dark_plus": ".vs-dark .token rgb(212, 212, 212)", - "light_plus": ".vs .token rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token rgb(212, 212, 212)", - "light_vs": ".vs .token rgb(0, 0, 0)", - "hc_black": ".hc-black .token rgb(255, 255, 255)" - } - }, - { - "c": "(", - "t": "block.bracketed.c.definition.function-call.function-with-body.implementation.initialization.meta.objc.parameters.punctuation.scope", - "r": { - "dark_plus": ".vs-dark .token rgb(212, 212, 212)", - "light_plus": ".vs .token rgb(0, 0, 0)", - "dark_vs": ".vs-dark .token rgb(212, 212, 212)", - "light_vs": ".vs .token rgb(0, 0, 0)", - "hc_black": ".hc-black .token rgb(255, 255, 255)" - } - }, - { - "c": "result == NSFileHandlingPanelOKButton)", + "c": " (result == NSFileHandlingPanelOKButton)", "t": "block.bracketed.c.function-call.function-with-body.implementation.meta.objc.scope", "r": { "dark_plus": ".vs-dark .token rgb(212, 212, 212)", @@ -1772,7 +1750,7 @@ }, { "c": " ", - "t": "block.c.c++.comment.function-with-body.implementation.leading.meta.objc.punctuation.scope.whitespace", + "t": "block.c.comment.cpp.function-with-body.implementation.leading.meta.objc.punctuation.scope.whitespace", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgba(227, 228, 226, 0.156863)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgba(51, 51, 51, 0.2)", @@ -1783,7 +1761,7 @@ }, { "c": "//", - "t": "block.c.c++.comment.definition.double-slash.function-with-body.implementation.line.meta.objc.punctuation.scope", + "t": "block.c.comment.cpp.definition.double-slash.function-with-body.implementation.line.meta.objc.punctuation.scope", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", @@ -1794,7 +1772,7 @@ }, { "c": " add a tap gesture recognizer", - "t": "block.c.c++.comment.double-slash.function-with-body.implementation.line.meta.objc.scope", + "t": "block.c.comment.cpp.double-slash.function-with-body.implementation.line.meta.objc.scope", "r": { "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.comment rgb(96, 139, 78)", "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.comment rgb(0, 128, 0)", diff --git a/extensions/python/test/colorize-fixtures/tets.py b/extensions/python/test/colorize-fixtures/test.py similarity index 100% rename from extensions/python/test/colorize-fixtures/tets.py rename to extensions/python/test/colorize-fixtures/test.py diff --git a/extensions/python/test/colorize-results/tets_py.json b/extensions/python/test/colorize-results/test_py.json similarity index 100% rename from extensions/python/test/colorize-results/tets_py.json rename to extensions/python/test/colorize-results/test_py.json diff --git a/extensions/ruby/syntaxes/Ruby.plist b/extensions/ruby/syntaxes/Ruby.plist index f5f7d47bce2..04e41fabbf5 100644 --- a/extensions/ruby/syntaxes/Ruby.plist +++ b/extensions/ruby/syntaxes/Ruby.plist @@ -1121,7 +1121,7 @@ end (?!\G) name - meta.embedded.block.c++ + meta.embedded.block.cpp patterns @@ -1136,7 +1136,7 @@
contentName - source.c++ + source.cpp end \s*\2$\n? endCaptures @@ -1161,7 +1161,7 @@
include - source.c++ + source.cpp include From f033f5113442d3ae3372554a52bc8bae6dfa6f1b Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Tue, 12 Apr 2016 11:56:49 +0200 Subject: [PATCH 044/117] Remove keyword.control.import override from plus themes --- .../css/test/colorize-fixtures/test.css | 4 + .../css/test/colorize-results/test_css.json | 352 ++++++++++++++++++ .../less/test/colorize-fixtures/test.less | 4 + .../less/test/colorize-results/test_less.json | 231 ++++++++++++ .../test/colorize-results/test_m.json | 16 +- .../python/test/colorize-fixtures/test.py | 1 + .../python/test/colorize-results/test_py.json | 8 +- .../theme-defaults/themes/dark_plus.json | 7 - .../theme-defaults/themes/light_plus.json | 7 - 9 files changed, 604 insertions(+), 26 deletions(-) diff --git a/extensions/css/test/colorize-fixtures/test.css b/extensions/css/test/colorize-fixtures/test.css index 23f966f0633..4a8bd2395f8 100644 --- a/extensions/css/test/colorize-fixtures/test.css +++ b/extensions/css/test/colorize-fixtures/test.css @@ -6,6 +6,10 @@ /* Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. */ /* basic elements */ +@import "mystyle.css"; +@import url("mystyle.css"); +@import url("bluish.css") projection, tv; + .html { padding: 0; font-style: 0; diff --git a/extensions/css/test/colorize-results/test_css.json b/extensions/css/test/colorize-results/test_css.json index 9cbf7dbb3a5..631478beac7 100644 --- a/extensions/css/test/colorize-results/test_css.json +++ b/extensions/css/test/colorize-results/test_css.json @@ -230,6 +230,358 @@ "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.comment rgb(124, 166, 104)" } }, + { + "c": "@", + "t": "at-rule.control.css.definition.import.keyword.meta.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": "import", + "t": "at-rule.control.css.import.keyword.meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": " ", + "t": "at-rule.css.import.meta", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "\"", + "t": "at-rule.begin.css.definition.double.import.meta.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "mystyle.css", + "t": "at-rule.css.double.import.meta.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "\"", + "t": "at-rule.css.definition.double.end.import.meta.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "@", + "t": "at-rule.control.css.definition.import.keyword.meta.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": "import", + "t": "at-rule.control.css.import.keyword.meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": " ", + "t": "at-rule.css.import.meta", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "url", + "t": "at-rule.css.function.import.meta.support.url", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "(", + "t": "at-rule.css.function.import.meta.punctuation.section", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "\"", + "t": "at-rule.begin.css.definition.double.import.meta.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "mystyle.css", + "t": "at-rule.css.double.import.meta.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "\"", + "t": "at-rule.css.definition.double.end.import.meta.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": ")", + "t": "at-rule.css.function.import.meta.punctuation.section", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "@", + "t": "at-rule.control.css.definition.import.keyword.meta.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": "import", + "t": "at-rule.control.css.import.keyword.meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": " ", + "t": "at-rule.css.import.meta", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "url", + "t": "at-rule.css.function.import.meta.support.url", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "(", + "t": "at-rule.css.function.import.meta.punctuation.section", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "\"", + "t": "at-rule.begin.css.definition.double.import.meta.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "bluish.css", + "t": "at-rule.css.double.import.meta.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "\"", + "t": "at-rule.css.definition.double.end.import.meta.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": ")", + "t": "at-rule.css.function.import.meta.punctuation.section", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": " ", + "t": "at-rule.css.import.meta", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "projection", + "t": "at-rule.constant.css.import.media.meta.support", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": ",", + "t": "arbitrary-repitition.at-rule.css.definition.import.meta.punctuation", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": " ", + "t": "at-rule.css.import.meta", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "tv", + "t": "at-rule.constant.css.import.media.meta.support", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, { "c": ".", "t": "attribute-name.class.css.definition.entity.meta.other.punctuation.selector", diff --git a/extensions/less/test/colorize-fixtures/test.less b/extensions/less/test/colorize-fixtures/test.less index 0755588e585..941821fb67c 100644 --- a/extensions/less/test/colorize-fixtures/test.less +++ b/extensions/less/test/colorize-fixtures/test.less @@ -1,3 +1,7 @@ +@import "mystyle.css"; +@import url("mystyle.css"); +@import url("bluish.css") projection, tv; + @base: #f938ab; .box-shadow(@style, @c) when (iscolor(@c)) { diff --git a/extensions/less/test/colorize-results/test_less.json b/extensions/less/test/colorize-results/test_less.json index ed68bec3f3b..d095946e291 100644 --- a/extensions/less/test/colorize-results/test_less.json +++ b/extensions/less/test/colorize-results/test_less.json @@ -1,4 +1,235 @@ [ + { + "c": "@", + "t": "at-rule.control.css.definition.import.keyword.meta.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": "import", + "t": "at-rule.control.css.import.keyword.meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "\"", + "t": "begin.css.definition.double.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "mystyle.css", + "t": "css.double.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": "\"", + "t": "css.definition.double.end.punctuation.quoted.string", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.string rgb(206, 145, 120)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.string rgb(163, 21, 21)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.string rgb(206, 145, 120)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.string rgb(163, 21, 21)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.string rgb(206, 145, 120)" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "@", + "t": "at-rule.control.css.definition.import.keyword.meta.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": "import", + "t": "at-rule.control.css.import.keyword.meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "url(", + "t": "any-method.builtin.css.function.support", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "\"mystyle.css\"", + "t": "any-method.builtin.css.function.parameter.support.url.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": ")", + "t": "any-method.builtin.css.function.support", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": ";", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "@", + "t": "at-rule.control.css.definition.import.keyword.meta.punctuation", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": "import", + "t": "at-rule.control.css.import.keyword.meta", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", + "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", + "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", + "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" + } + }, + { + "c": " ", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "url(", + "t": "any-method.builtin.css.function.support", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": "\"bluish.css\"", + "t": "any-method.builtin.css.function.parameter.support.url.variable", + "r": { + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.variable.parameter rgb(156, 220, 254)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.variable.parameter rgb(0, 16, 128)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": ")", + "t": "any-method.builtin.css.function.support", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, + { + "c": " projection, tv;", + "t": "", + "r": { + "dark_plus": ".vs-dark .token rgb(212, 212, 212)", + "light_plus": ".vs .token rgb(0, 0, 0)", + "dark_vs": ".vs-dark .token rgb(212, 212, 212)", + "light_vs": ".vs .token rgb(0, 0, 0)", + "hc_black": ".hc-black .token rgb(255, 255, 255)" + } + }, { "c": "@base", "t": "less.other.variable", diff --git a/extensions/objective-c/test/colorize-results/test_m.json b/extensions/objective-c/test/colorize-results/test_m.json index 572e28dc652..a8da3c04b93 100644 --- a/extensions/objective-c/test/colorize-results/test_m.json +++ b/extensions/objective-c/test/colorize-results/test_m.json @@ -47,8 +47,8 @@ "c": "#", "t": "c.control.definition.directive.import.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -58,8 +58,8 @@ "c": "import", "t": "c.control.directive.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -113,8 +113,8 @@ "c": "#", "t": "c.control.definition.directive.import.include.keyword.meta.preprocessor.punctuation", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -124,8 +124,8 @@ "c": "import", "t": "c.control.directive.import.include.keyword.meta.preprocessor", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" diff --git a/extensions/python/test/colorize-fixtures/test.py b/extensions/python/test/colorize-fixtures/test.py index 1cd0e7cab93..890b8925298 100644 --- a/extensions/python/test/colorize-fixtures/test.py +++ b/extensions/python/test/colorize-fixtures/test.py @@ -1,5 +1,6 @@ from banana import * + class Monkey: # Bananas the monkey can eat. capacity = 10 diff --git a/extensions/python/test/colorize-results/test_py.json b/extensions/python/test/colorize-results/test_py.json index 08f3d4657cb..650b55e0722 100644 --- a/extensions/python/test/colorize-results/test_py.json +++ b/extensions/python/test/colorize-results/test_py.json @@ -3,8 +3,8 @@ "c": "from", "t": "control.from.import.keyword.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" @@ -25,8 +25,8 @@ "c": "import", "t": "control.import.keyword.python", "r": { - "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control.import rgb(86, 156, 214)", - "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control.import rgb(0, 0, 255)", + "dark_plus": ".vs-dark.vscode-theme-defaults-themes-dark_plus-json .token.keyword.control rgb(197, 134, 192)", + "light_plus": ".vs.vscode-theme-defaults-themes-light_plus-json .token.keyword.control rgb(175, 0, 219)", "dark_vs": ".vs-dark.vscode-theme-defaults-themes-dark_vs-json .token.keyword.control rgb(86, 156, 214)", "light_vs": ".vs.vscode-theme-defaults-themes-light_vs-json .token.keyword.control rgb(0, 0, 255)", "hc_black": ".hc-black.vscode-theme-defaults-themes-hc_black-json .token.keyword.control rgb(86, 156, 214)" diff --git a/extensions/theme-defaults/themes/dark_plus.json b/extensions/theme-defaults/themes/dark_plus.json index f17abbe016f..a91337d6638 100644 --- a/extensions/theme-defaults/themes/dark_plus.json +++ b/extensions/theme-defaults/themes/dark_plus.json @@ -49,13 +49,6 @@ "foreground": "#9CDCFE" } }, - { - "name": "C includes", - "scope": "keyword.control.import", - "settings": { - "foreground": "#569CD6" - } - }, { "name": "CSS property value", "scope": [ diff --git a/extensions/theme-defaults/themes/light_plus.json b/extensions/theme-defaults/themes/light_plus.json index 6f014e548e6..31b494f7678 100644 --- a/extensions/theme-defaults/themes/light_plus.json +++ b/extensions/theme-defaults/themes/light_plus.json @@ -48,13 +48,6 @@ "settings": { "foreground": "#001080" } - }, - { - "name": "C includes must match meta.preprocessor", - "scope": "keyword.control.import", - "settings": { - "foreground": "#0000FF" - } } ] } \ No newline at end of file From a2fa13b3d5f0a14000443e0cc206df9e1782b170 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 12:48:19 +0200 Subject: [PATCH 045/117] debug: improve registration of debug views --- .../parts/debug/browser/debugViewlet.ts | 10 +++---- src/vs/workbench/parts/debug/common/debug.ts | 29 ++++++++----------- .../electron-browser/debug.contribution.ts | 8 ++--- 3 files changed, 21 insertions(+), 26 deletions(-) diff --git a/src/vs/workbench/parts/debug/browser/debugViewlet.ts b/src/vs/workbench/parts/debug/browser/debugViewlet.ts index 01aef412237..239b1d00a8e 100644 --- a/src/vs/workbench/parts/debug/browser/debugViewlet.ts +++ b/src/vs/workbench/parts/debug/browser/debugViewlet.ts @@ -34,7 +34,6 @@ export class DebugViewlet extends viewlet.Viewlet { private $el: builder.Builder; private splitView: splitview.SplitView; - // TODO@Isidor views need to be splitView.collapsibleView to make them more general private views: (viewlet.CollapsibleViewletView | viewlet.AdaptiveCollapsibleViewletView)[]; private lastFocusedView: viewlet.CollapsibleViewletView | viewlet.AdaptiveCollapsibleViewletView; @@ -65,10 +64,11 @@ export class DebugViewlet extends viewlet.Viewlet { if (this.contextService.getWorkspace()) { const actionRunner = this.getActionRunner(); - const viewDescriptors = debug.DebugViewRegistry.getDebugViews().sort((first, second) => first.order - second.order); - // TODO@Isi viewDescriptors mixed descriptors with different arguments (# of arguments) which means - // you fail to use the createInstance method which checks for the ctor-args of the type you create. - this.views = viewDescriptors.map(dsc => this.instantiationService.createInstance( dsc, actionRunner, this.viewletSettings)); + this.views = debug.DebugViewRegistry.getDebugViews().map(viewConstructor => this.instantiationService.createInstance( + viewConstructor, + actionRunner, + this.viewletSettings) + ); this.splitView = new splitview.SplitView(this.$el.getHTMLElement()); this.toDispose.push(this.splitView); diff --git a/src/vs/workbench/parts/debug/common/debug.ts b/src/vs/workbench/parts/debug/common/debug.ts index 0de88bb1b97..b75588ffbe4 100644 --- a/src/vs/workbench/parts/debug/common/debug.ts +++ b/src/vs/workbench/parts/debug/common/debug.ts @@ -5,11 +5,11 @@ import uri from 'vs/base/common/uri'; import { TPromise } from 'vs/base/common/winjs.base'; +import { IActionRunner } from 'vs/base/common/actions'; import ee = require('vs/base/common/eventEmitter'); import severity from 'vs/base/common/severity'; import { AdaptiveCollapsibleViewletView, CollapsibleViewletView } from 'vs/workbench/browser/viewlet'; import { createDecorator, ServiceIdentifier } from 'vs/platform/instantiation/common/instantiation'; -import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors'; import editor = require('vs/editor/common/editorCommon'); import editorbrowser = require('vs/editor/browser/editorBrowser'); import { Source } from 'vs/workbench/parts/debug/common/debugSource'; @@ -348,36 +348,31 @@ export interface IDebugEditorContribution extends editor.IEditorContribution { showHover(range: editor.IEditorRange, hoveringOver: string, focus: boolean): TPromise; } -// Debug view descriptors and registration +// Debug view registration -export class DebugViewDescriptor extends SyncDescriptor { - constructor(ctor: any, public order: number) { - super(ctor); - } +export interface IDebugViewConstructorSignature { + new (actionRunner: IActionRunner, viewletSetings: any, ...services: { serviceId: ServiceIdentifier; }[]): AdaptiveCollapsibleViewletView | CollapsibleViewletView; } export interface IDebugViewRegistry { - registerDebugView(descriptor: DebugViewDescriptor): void; - getDebugViews(): DebugViewDescriptor[]; + registerDebugView(view: IDebugViewConstructorSignature, order: number): void; + getDebugViews(): IDebugViewConstructorSignature[]; } class DebugViewRegistryImpl implements IDebugViewRegistry { - private debugViews: DebugViewDescriptor[]; + private debugViews: { view: IDebugViewConstructorSignature, order: number }[]; constructor() { this.debugViews = []; } - public registerDebugView(descriptor: DebugViewDescriptor): void { - if (this.debugViews.some(dsc => dsc.equals(descriptor))) { - return; - } - - this.debugViews.push(descriptor); + public registerDebugView(view: IDebugViewConstructorSignature, order: number): void { + this.debugViews.push({ view, order }); } - public getDebugViews(): DebugViewDescriptor[] { - return this.debugViews; + public getDebugViews(): IDebugViewConstructorSignature[] { + return this.debugViews.sort((first, second) => first.order - second.order) + .map(viewWithOrder => viewWithOrder.view); } } diff --git a/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts b/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts index 9a58b42d01c..86d61298f69 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts @@ -85,10 +85,10 @@ const openViewletKb: IKeybindings = { (platform.Registry.as(panel.Extensions.Panels)).setDefaultPanelId(debug.REPL_ID); // Register default debug views -debug.DebugViewRegistry.registerDebugView(new debug.DebugViewDescriptor(VariablesView, 10)); -debug.DebugViewRegistry.registerDebugView(new debug.DebugViewDescriptor(WatchExpressionsView, 20)); -debug.DebugViewRegistry.registerDebugView(new debug.DebugViewDescriptor(CallStackView, 30)); -debug.DebugViewRegistry.registerDebugView(new debug.DebugViewDescriptor(BreakpointsView, 40)); +debug.DebugViewRegistry.registerDebugView(VariablesView, 10); +debug.DebugViewRegistry.registerDebugView(WatchExpressionsView, 20); +debug.DebugViewRegistry.registerDebugView(CallStackView, 30); +debug.DebugViewRegistry.registerDebugView(BreakpointsView, 40); // register action to open viewlet const registry = ( platform.Registry.as(wbaregistry.Extensions.WorkbenchActions)); From ff7fdc97a6d7b1b29f7c4026057bda5f3bc5e641 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 12 Apr 2016 15:42:02 +0200 Subject: [PATCH 046/117] create splitview.IView --- src/vs/base/browser/ui/splitview/splitview.ts | 170 +++++++++--------- src/vs/workbench/browser/viewlet.ts | 4 +- .../parts/files/browser/views/emptyView.ts | 6 +- 3 files changed, 97 insertions(+), 83 deletions(-) diff --git a/src/vs/base/browser/ui/splitview/splitview.ts b/src/vs/base/browser/ui/splitview/splitview.ts index 5c686964207..01331180a45 100644 --- a/src/vs/base/browser/ui/splitview/splitview.ts +++ b/src/vs/base/browser/ui/splitview/splitview.ts @@ -3,7 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ - 'use strict'; import 'vs/css!./splitview'; @@ -37,6 +36,23 @@ export interface ISashEvent { current: number; } +export interface IViewOptions { + sizing?: ViewSizing; + fixedSize?: number; + minimumSize?: number; +} + +export interface IView extends ee.IEventEmitter { + size: number; + sizing: ViewSizing; + fixedSize: number; + minimumSize: number; + maximumSize: number; + render(container: HTMLElement, orientation: Orientation): void; + layout(size: number, orientation: Orientation): void; + focus(): void; +} + interface IState { start?: number; sizes?: number[]; @@ -48,16 +64,9 @@ interface IState { expands: number[]; } -export interface IViewOptions { - sizing?: ViewSizing; - fixedSize?: number; - minimumSize?: number; -} - -export class View extends ee.EventEmitter { - - public size: number; +export abstract class View extends ee.EventEmitter implements IView { + size: number; protected _sizing: ViewSizing; protected _fixedSize: number; protected _minimumSize: number; @@ -71,42 +80,32 @@ export class View extends ee.EventEmitter { this._minimumSize = types.isUndefined(opts.minimumSize) ? 22 : opts.minimumSize; } - public get sizing(): ViewSizing { return this._sizing; } - public get fixedSize(): number { return this._fixedSize; } - public get minimumSize(): number { return this.sizing === ViewSizing.Fixed ? this.fixedSize : this._minimumSize; } - public get maximumSize(): number { return this.sizing === ViewSizing.Fixed ? this.fixedSize : Number.POSITIVE_INFINITY; } + get sizing(): ViewSizing { return this._sizing; } + get fixedSize(): number { return this._fixedSize; } + get minimumSize(): number { return this.sizing === ViewSizing.Fixed ? this.fixedSize : this._minimumSize; } + get maximumSize(): number { return this.sizing === ViewSizing.Fixed ? this.fixedSize : Number.POSITIVE_INFINITY; } - // protected? - public setFlexible(size?: number): void { + protected setFlexible(size?: number): void { this._sizing = ViewSizing.Flexible; this.emit('change', types.isUndefined(size) ? this._minimumSize : size); } - // protected? - public setFixed(size?: number): void { + protected setFixed(size?: number): void { this._sizing = ViewSizing.Fixed; this._fixedSize = types.isUndefined(size) ? this._fixedSize : size; this.emit('change', this._fixedSize); } - public render(container: HTMLElement, orientation: Orientation): void { - // to implement - } - - public focus(): void { - // to implement - } - - public layout(size: number, orientation: Orientation): void { - // to optionally implement - } + abstract render(container: HTMLElement, orientation: Orientation): void; + abstract focus(): void; + abstract layout(size: number, orientation: Orientation): void; } export interface IHeaderViewOptions { headerSize?: number; } -export class HeaderView extends View { +export abstract class HeaderView extends View { protected headerSize: number; protected header: HTMLElement; @@ -118,7 +117,7 @@ export class HeaderView extends View { this.headerSize = types.isUndefined(opts.headerSize) ? 22 : opts.headerSize; } - public render(container: HTMLElement, orientation: Orientation): void { + render(container: HTMLElement, orientation: Orientation): void { this.header = document.createElement('div'); this.header.className = 'header'; @@ -141,19 +140,11 @@ export class HeaderView extends View { container.appendChild(this.body); } - public layout(size: number, orientation: Orientation): void { + layout(size: number, orientation: Orientation): void { this.layoutBodyContainer(orientation); this.layoutBody(size - this.headerSize); } - public renderHeader(container: HTMLElement): void { - throw new Error('not implemented'); - } - - public renderBody(container: HTMLElement): void { - throw new Error('not implemented'); - } - private layoutBodyContainer(orientation: Orientation): void { let size = `calc(100% - ${this.headerSize}px)`; @@ -164,16 +155,16 @@ export class HeaderView extends View { } } - protected layoutBody(size: number): void { - // to optionally implement - } - - public dispose(): void { + dispose(): void { this.header = null; this.body = null; super.dispose(); } + + protected abstract renderHeader(container: HTMLElement): void; + protected abstract renderBody(container: HTMLElement): void; + protected abstract layoutBody(size: number): void; } export interface ICollapsibleViewOptions { @@ -189,7 +180,7 @@ export enum CollapsibleState { COLLAPSED } -export class AbstractCollapsibleView extends HeaderView { +export abstract class AbstractCollapsibleView extends HeaderView { protected state: CollapsibleState; @@ -205,7 +196,7 @@ export class AbstractCollapsibleView extends HeaderView { this.changeState(types.isUndefined(opts.initialState) ? CollapsibleState.EXPANDED : opts.initialState); } - public render(container: HTMLElement, orientation: Orientation): void { + render(container: HTMLElement, orientation: Orientation): void { super.render(container, orientation); dom.addClass(this.header, 'collapsible'); @@ -255,22 +246,22 @@ export class AbstractCollapsibleView extends HeaderView { }); } - public focus(): void { + focus(): void { if (this.header) { this.header.focus(); } } - public layout(size: number, orientation: Orientation): void { + layout(size: number, orientation: Orientation): void { this.layoutHeader(); super.layout(size, orientation); } - public isExpanded(): boolean { + isExpanded(): boolean { return this.state === CollapsibleState.EXPANDED; } - public expand(): void { + expand(): void { if (this.isExpanded()) { return; } @@ -278,7 +269,7 @@ export class AbstractCollapsibleView extends HeaderView { this.changeState(CollapsibleState.EXPANDED); } - public collapse(): void { + collapse(): void { if (!this.isExpanded()) { return; } @@ -286,7 +277,7 @@ export class AbstractCollapsibleView extends HeaderView { this.changeState(CollapsibleState.COLLAPSED); } - public toggleExpansion(): void { + toggleExpansion(): void { if (this.isExpanded()) { this.collapse(); } else { @@ -316,7 +307,7 @@ export class AbstractCollapsibleView extends HeaderView { this.layoutHeader(); } - public dispose(): void { + dispose(): void { if (this.headerClickListener) { this.headerClickListener.dispose(); this.headerClickListener = null; @@ -336,7 +327,7 @@ export class AbstractCollapsibleView extends HeaderView { } } -export class CollapsibleView extends AbstractCollapsibleView { +export abstract class CollapsibleView extends AbstractCollapsibleView { private previousSize: number; @@ -361,7 +352,7 @@ export interface IFixedCollapsibleViewOptions extends ICollapsibleViewOptions { expandedBodySize?: number; } -export class FixedCollapsibleView extends AbstractCollapsibleView { +export abstract class FixedCollapsibleView extends AbstractCollapsibleView { private _expandedBodySize: number; @@ -370,11 +361,11 @@ export class FixedCollapsibleView extends AbstractCollapsibleView { this._expandedBodySize = types.isUndefined(opts.expandedBodySize) ? 22 : opts.expandedBodySize; } - public get fixedSize(): number { return this.state === CollapsibleState.EXPANDED ? this.expandedSize : this.headerSize; } + get fixedSize(): number { return this.state === CollapsibleState.EXPANDED ? this.expandedSize : this.headerSize; } private get expandedSize(): number { return this.expandedBodySize + this.headerSize; } - public get expandedBodySize(): number { return this._expandedBodySize; } - public set expandedBodySize(size: number) { + get expandedBodySize(): number { return this._expandedBodySize; } + set expandedBodySize(size: number) { this._expandedBodySize = size; this.setFixed(this.fixedSize); } @@ -385,23 +376,46 @@ export class FixedCollapsibleView extends AbstractCollapsibleView { } } -class DeadView extends View { - constructor(view: View) { +class PlainView extends View { + render() {} + focus() {} + layout() {} +} + +class DeadView extends PlainView { + + constructor(view: IView) { super({ sizing: ViewSizing.Fixed, fixedSize: 0 }); this.size = view.size; } } +class VoidView extends PlainView { + + constructor() { + super({ sizing: ViewSizing.Fixed, minimumSize: 0, fixedSize: 0 }); + } + + setFlexible(size?: number): void { + super.setFlexible(size); + } + + setFixed(size?: number): void { + super.setFixed(size); + } +} + function sum(a: number, b: number): number { return a + b; } export class SplitView implements sash.IHorizontalSashLayoutProvider, - sash.IVerticalSashLayoutProvider { + sash.IVerticalSashLayoutProvider +{ private orientation: Orientation; private el: HTMLElement; private size: number; private viewElements: HTMLElement[]; - private views: View[]; + private views: IView[]; private viewChangeListeners: lifecycle.IDisposable[]; private viewFocusPreviousListeners: lifecycle.IDisposable[]; private viewFocusNextListeners: lifecycle.IDisposable[]; @@ -414,7 +428,7 @@ export class SplitView implements private layoutViewElement: (viewElement: HTMLElement, size: number) => void; private eventWrapper: (event: sash.ISashEvent) => ISashEvent; private animationTimeout: number; - private _onFocus: Emitter; + private _onFocus: Emitter; private state: IState; constructor(container: HTMLElement, options?: IOptions) { @@ -438,7 +452,7 @@ export class SplitView implements this.sashes = []; this.sashesListeners = []; this.animationTimeout = null; - this._onFocus = new Emitter(); + this._onFocus = new Emitter(); this.sashOrientation = this.orientation === Orientation.VERTICAL ? sash.Orientation.HORIZONTAL @@ -455,18 +469,14 @@ export class SplitView implements } // The void space exists to handle the case where all other views are fixed size - this.addView(new View({ - sizing: ViewSizing.Fixed, - minimumSize: 0, - fixedSize: 0 - }), 1, 0); + this.addView(new VoidView(), 1, 0); } - public get onFocus(): Event { + get onFocus(): Event { return this._onFocus.event; } - public addView(view: View, initialWeight: number = 1, index = this.views.length - 1): void { + addView(view: IView, initialWeight: number = 1, index = this.views.length - 1): void { if (initialWeight <= 0) { throw new Error('Initial weight must be a positive number.'); } @@ -511,7 +521,7 @@ export class SplitView implements this.viewFocusNextListeners.splice(index, 0, view.addListener2('focusNext', () => index < this.views.length && this.views[index + 1].focus())); } - public removeView(view: View): void { + removeView(view: IView): void { let index = this.views.indexOf(view); if (index < 0) { @@ -546,7 +556,7 @@ export class SplitView implements view.dispose(); } - public layout(size?: number): void { + layout(size?: number): void { size = size || this.measureContainerSize(); if (this.size === null) { @@ -712,7 +722,7 @@ export class SplitView implements }); } - private onViewChange(view: View, size: number): void { + private onViewChange(view: IView, size: number): void { if (view !== this.voidView) { if (this.areAllViewsFixed()) { this.voidView.setFlexible(); @@ -771,19 +781,19 @@ export class SplitView implements dom.removeClass(this.el, 'animated'); } - private get voidView(): View { - return this.views[this.views.length - 1]; + private get voidView(): VoidView { + return this.views[this.views.length - 1] as VoidView; } private areAllViewsFixed(): boolean { return this.views.every((v, i) => v.sizing === ViewSizing.Fixed || i === this.views.length - 1); } - public getVerticalSashLeft(sash: sash.Sash): number { + getVerticalSashLeft(sash: sash.Sash): number { return this.getSashPosition(sash); } - public getHorizontalSashTop(sash: sash.Sash): number { + getHorizontalSashTop(sash: sash.Sash): number { return this.getSashPosition(sash); } @@ -798,7 +808,7 @@ export class SplitView implements return position; } - public dispose(): void { + dispose(): void { if (types.isNumber(this.animationTimeout)) { window.clearTimeout(this.animationTimeout); } diff --git a/src/vs/workbench/browser/viewlet.ts b/src/vs/workbench/browser/viewlet.ts index a3f075272c3..cd8209aa1db 100644 --- a/src/vs/workbench/browser/viewlet.ts +++ b/src/vs/workbench/browser/viewlet.ts @@ -282,7 +282,7 @@ export interface IViewletView { /** * The AdaptiveCollapsibleViewletView can grow with the content inside dynamically. */ -export class AdaptiveCollapsibleViewletView extends FixedCollapsibleView implements IViewletView { +export abstract class AdaptiveCollapsibleViewletView extends FixedCollapsibleView implements IViewletView { protected treeContainer: HTMLElement; protected tree: ITree; protected toDispose: IDisposable[]; @@ -407,7 +407,7 @@ export class AdaptiveCollapsibleViewletView extends FixedCollapsibleView impleme } } -export class CollapsibleViewletView extends CollapsibleView implements IViewletView { +export abstract class CollapsibleViewletView extends CollapsibleView implements IViewletView { protected treeContainer: HTMLElement; protected tree: ITree; protected toDispose: IDisposable[]; diff --git a/src/vs/workbench/parts/files/browser/views/emptyView.ts b/src/vs/workbench/parts/files/browser/views/emptyView.ts index 1e1c7f3caab..2d7745c4da1 100644 --- a/src/vs/workbench/parts/files/browser/views/emptyView.ts +++ b/src/vs/workbench/parts/files/browser/views/emptyView.ts @@ -32,7 +32,7 @@ export class EmptyView extends CollapsibleView { $('span').text(nls.localize('noWorkspace', "No Folder Opened")).appendTo(titleDiv); } - public renderBody(container: HTMLElement): void { + protected renderBody(container: HTMLElement): void { DOM.addClass(container, 'explorer-empty-view'); let titleDiv = $('div.section').appendTo(container); @@ -47,6 +47,10 @@ export class EmptyView extends CollapsibleView { }); } + protected layoutBody(size: number): void { + // no-op + } + private runWorkbenchAction(actionId: string): void { let actionRegistry = Registry.as(Extensions.WorkbenchActions); let actionDescriptor = actionRegistry.getWorkbenchAction(actionId); From a5c45f5b59404558959eb0246a68883a3ebda925 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 12 Apr 2016 15:44:53 +0200 Subject: [PATCH 047/117] cleanup splitview.sum --- src/vs/base/browser/ui/splitview/splitview.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/vs/base/browser/ui/splitview/splitview.ts b/src/vs/base/browser/ui/splitview/splitview.ts index 01331180a45..637abd60cdf 100644 --- a/src/vs/base/browser/ui/splitview/splitview.ts +++ b/src/vs/base/browser/ui/splitview/splitview.ts @@ -405,7 +405,9 @@ class VoidView extends PlainView { } } -function sum(a: number, b: number): number { return a + b; } +function sum(arr: number[]): number { + return arr.reduce((a, b) => a + b); +} export class SplitView implements sash.IHorizontalSashLayoutProvider, @@ -574,9 +576,9 @@ export class SplitView implements let expands = this.views.map(v => v.maximumSize - v.size); if (size < this.size) { - this.expandCollapse(Math.min(diff, collapses.reduce(sum, 0)), collapses, expands, up, []); + this.expandCollapse(Math.min(diff, sum(collapses)), collapses, expands, up, []); } else if (size > this.size) { - this.expandCollapse(Math.min(diff, expands.reduce(sum, 0)), collapses, expands, [], up); + this.expandCollapse(Math.min(diff, sum(expands)), collapses, expands, [], up); } this.size = size; @@ -601,8 +603,8 @@ export class SplitView implements sizes: this.views.map(v => v.size), up: up, down: down, - maxUp: Math.min(collapsesUp.reduce(sum, 0), expandsDown.reduce(sum, 0)), - maxDown: Math.min(expandsUp.reduce(sum, 0), collapsesDown.reduce(sum, 0)), + maxUp: Math.min(sum(collapsesUp), sum(expandsDown)), + maxDown: Math.min(sum(expandsUp), sum(collapsesDown)), collapses: collapses, expands: expands }; From 69271d1a17600fde53a1e3316a5afdf77c0303e0 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 15:12:48 +0200 Subject: [PATCH 048/117] fixes #5148 --- src/vs/workbench/parts/debug/electron-browser/debugService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 7837fbe5265..9fb515fbe82 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -824,7 +824,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService public revealRepl(focus = true): TPromise { return this.panelService.openPanel(debug.REPL_ID, focus).then((repl: Repl) => { const elements = this.model.getReplElements(); - if (elements.length > 0) { + if (repl && elements.length > 0) { return repl.reveal(elements[elements.length - 1]); } }); From 94d94626ae46e376c28f31f293703644760aa6ed Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 15:36:45 +0200 Subject: [PATCH 049/117] debug: send activation event 'onDebug:${type}' fixes #3059 --- src/vs/workbench/parts/debug/electron-browser/debugService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 9fb515fbe82..69f3e0c4df7 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -610,6 +610,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService this.revealRepl(false).done(undefined, errors.onUnexpectedError); } this.partService.addClass('debugging'); + this.extensionService.activateByEvent(`onDebug:${ configuration.type }`).done(null, errors.onUnexpectedError); this.contextService.updateOptions('editor', { glyphMargin: true }); From 29fbb3e8455589641168edc97b6c97698d9f7fd0 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 15:42:13 +0200 Subject: [PATCH 050/117] fixes #5145 --- src/vs/workbench/parts/debug/common/debugModel.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/parts/debug/common/debugModel.ts b/src/vs/workbench/parts/debug/common/debugModel.ts index 9e5572cd6b6..028c9afe1e9 100644 --- a/src/vs/workbench/parts/debug/common/debugModel.ts +++ b/src/vs/workbench/parts/debug/common/debugModel.ts @@ -47,9 +47,11 @@ export function evaluateExpression(session: debug.IRawDebugSession, stackFrame: frameId: stackFrame ? stackFrame.frameId : undefined, context }).then(response => { - expression.value = response.body.result; - expression.available = true; - expression.reference = response.body.variablesReference; + expression.available = !!response.body; + if (response.body) { + expression.value = response.body.result; + expression.reference = response.body.variablesReference; + } return expression; }, err => { From f64ad1bffb28443374b565f52ad87142334af755 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 15:58:27 +0200 Subject: [PATCH 051/117] IViewletView extends IView --- src/vs/workbench/browser/viewlet.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/browser/viewlet.ts b/src/vs/workbench/browser/viewlet.ts index cd8209aa1db..2e37bc68ce2 100644 --- a/src/vs/workbench/browser/viewlet.ts +++ b/src/vs/workbench/browser/viewlet.ts @@ -16,7 +16,7 @@ import {prepareActions} from 'vs/workbench/browser/actionBarRegistry'; import {ToolBar} from 'vs/base/browser/ui/toolbar/toolbar'; import {DelayedDragHandler} from 'vs/base/browser/dnd'; import {dispose, IDisposable} from 'vs/base/common/lifecycle'; -import {CollapsibleView, CollapsibleState, FixedCollapsibleView} from 'vs/base/browser/ui/splitview/splitview'; +import {CollapsibleView, CollapsibleState, FixedCollapsibleView, IView} from 'vs/base/browser/ui/splitview/splitview'; import {IViewletService} from 'vs/workbench/services/viewlet/common/viewletService'; import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService'; import {IViewlet} from 'vs/workbench/common/viewlet'; @@ -270,13 +270,15 @@ export class CollapseAction extends Action { } } -export interface IViewletView { +export interface IViewletView extends IView { create(): TPromise; setVisible(visible: boolean): TPromise; getActions(): IAction[]; getSecondaryActions(): IAction[]; getActionItem(action: IAction): IActionItem; shutdown(): void; + focusBody(): void; + isExpanded(): boolean; } /** From 82c89910cc575ce33afae4d73e2fa0ae9d0699a9 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 16:00:23 +0200 Subject: [PATCH 052/117] debug: use IViewletView --- .../parts/debug/browser/debugViewlet.ts | 18 +++++++++--------- src/vs/workbench/parts/debug/common/debug.ts | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/vs/workbench/parts/debug/browser/debugViewlet.ts b/src/vs/workbench/parts/debug/browser/debugViewlet.ts index 239b1d00a8e..b3d5b3d0254 100644 --- a/src/vs/workbench/parts/debug/browser/debugViewlet.ts +++ b/src/vs/workbench/parts/debug/browser/debugViewlet.ts @@ -10,9 +10,9 @@ import { TPromise } from 'vs/base/common/winjs.base'; import lifecycle = require('vs/base/common/lifecycle'); import actions = require('vs/base/common/actions'); import actionbar = require('vs/base/browser/ui/actionbar/actionbar'); -import splitview = require('vs/base/browser/ui/splitview/splitview'); +import { SplitView } from 'vs/base/browser/ui/splitview/splitview'; import memento = require('vs/workbench/common/memento'); -import viewlet = require('vs/workbench/browser/viewlet'); +import { IViewletView, Viewlet } from 'vs/workbench/browser/viewlet'; import debug = require('vs/workbench/parts/debug/common/debug'); import debugactions = require('vs/workbench/parts/debug/electron-browser/debugActions'); import dbgactionitems = require('vs/workbench/parts/debug/browser/debugActionItems'); @@ -25,7 +25,7 @@ import { IStorageService } from 'vs/platform/storage/common/storage'; import IDebugService = debug.IDebugService; const $ = builder.$; -export class DebugViewlet extends viewlet.Viewlet { +export class DebugViewlet extends Viewlet { private toDispose: lifecycle.IDisposable[]; private actions: actions.IAction[]; @@ -33,10 +33,10 @@ export class DebugViewlet extends viewlet.Viewlet { private viewletSettings: any; private $el: builder.Builder; - private splitView: splitview.SplitView; - private views: (viewlet.CollapsibleViewletView | viewlet.AdaptiveCollapsibleViewletView)[]; + private splitView: SplitView; + private views: IViewletView[]; - private lastFocusedView: viewlet.CollapsibleViewletView | viewlet.AdaptiveCollapsibleViewletView; + private lastFocusedView: IViewletView; constructor( @ITelemetryService telemetryService: ITelemetryService, @@ -70,12 +70,12 @@ export class DebugViewlet extends viewlet.Viewlet { this.viewletSettings) ); - this.splitView = new splitview.SplitView(this.$el.getHTMLElement()); + this.splitView = new SplitView(this.$el.getHTMLElement()); this.toDispose.push(this.splitView); this.views.forEach(v => this.splitView.addView(v)); // Track focus - this.toDispose.push(this.splitView.onFocus((view: viewlet.CollapsibleViewletView | viewlet.AdaptiveCollapsibleViewletView) => { + this.toDispose.push(this.splitView.onFocus((view: IViewletView) => { this.lastFocusedView = view; })); } else { @@ -92,7 +92,7 @@ export class DebugViewlet extends viewlet.Viewlet { public setVisible(visible: boolean): TPromise { return super.setVisible(visible).then(() => { - return TPromise.join(this.views.map((view) => view.setVisible && view.setVisible(visible))); + return TPromise.join(this.views.map(view => view.setVisible(visible))); }); } diff --git a/src/vs/workbench/parts/debug/common/debug.ts b/src/vs/workbench/parts/debug/common/debug.ts index b75588ffbe4..1d5f55b43a2 100644 --- a/src/vs/workbench/parts/debug/common/debug.ts +++ b/src/vs/workbench/parts/debug/common/debug.ts @@ -8,7 +8,7 @@ import { TPromise } from 'vs/base/common/winjs.base'; import { IActionRunner } from 'vs/base/common/actions'; import ee = require('vs/base/common/eventEmitter'); import severity from 'vs/base/common/severity'; -import { AdaptiveCollapsibleViewletView, CollapsibleViewletView } from 'vs/workbench/browser/viewlet'; +import { IViewletView } from 'vs/workbench/browser/viewlet'; import { createDecorator, ServiceIdentifier } from 'vs/platform/instantiation/common/instantiation'; import editor = require('vs/editor/common/editorCommon'); import editorbrowser = require('vs/editor/browser/editorBrowser'); @@ -351,7 +351,7 @@ export interface IDebugEditorContribution extends editor.IEditorContribution { // Debug view registration export interface IDebugViewConstructorSignature { - new (actionRunner: IActionRunner, viewletSetings: any, ...services: { serviceId: ServiceIdentifier; }[]): AdaptiveCollapsibleViewletView | CollapsibleViewletView; + new (actionRunner: IActionRunner, viewletSetings: any, ...services: { serviceId: ServiceIdentifier; }[]): IViewletView; } export interface IDebugViewRegistry { From 9c5d331136c457636e65af97c489a37f9b6bdbcf Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 12 Apr 2016 16:15:34 +0200 Subject: [PATCH 053/117] make sure cleanupInfo is called on *all* outgoing data --- src/vs/platform/telemetry/browser/mainTelemetryService.ts | 2 ++ src/vs/platform/telemetry/common/abstractTelemetryService.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vs/platform/telemetry/browser/mainTelemetryService.ts b/src/vs/platform/telemetry/browser/mainTelemetryService.ts index db633caa252..8e6e9187c2f 100644 --- a/src/vs/platform/telemetry/browser/mainTelemetryService.ts +++ b/src/vs/platform/telemetry/browser/mainTelemetryService.ts @@ -7,6 +7,7 @@ import * as Platform from 'vs/base/common/platform'; import * as uuid from 'vs/base/common/uuid'; +import {cloneAndChange} from 'vs/base/common/objects'; import {AbstractTelemetryService} from 'vs/platform/telemetry/common/abstractTelemetryService'; import {ITelemetryService, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; import {IdleMonitor, UserStatus} from 'vs/base/browser/idleMonitor'; @@ -78,6 +79,7 @@ export class MainTelemetryService extends AbstractTelemetryService implements IT this.eventCount++; + data = data && cloneAndChange(data, value => typeof value === 'string' ? this.cleanupInfo(value) : void 0); data = this.addCommonProperties(data); let allAppenders = this.getAppenders(); diff --git a/src/vs/platform/telemetry/common/abstractTelemetryService.ts b/src/vs/platform/telemetry/common/abstractTelemetryService.ts index b2f924f2269..2a32b4a55dc 100644 --- a/src/vs/platform/telemetry/common/abstractTelemetryService.ts +++ b/src/vs/platform/telemetry/common/abstractTelemetryService.ts @@ -132,7 +132,7 @@ export abstract class AbstractTelemetryService implements ITelemetryService { this.errorFlushTimeout = -1; } - private cleanupInfo(stack: string): string { + protected cleanupInfo(stack: string): string { // `file:///DANGEROUS/PATH/resources/app/Useful/Information` let reg = /file:\/\/\/.*?\/resources\/app\//gi; From d85d1087329d6d18eea8b5c7cc3f277d64a8227b Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 12 Apr 2016 17:42:37 +0200 Subject: [PATCH 054/117] fixes #4977 --- .../parts/extensions/electron-browser/media/extensions.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vs/workbench/parts/extensions/electron-browser/media/extensions.css b/src/vs/workbench/parts/extensions/electron-browser/media/extensions.css index a11a194e46a..c302e4a68f7 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/media/extensions.css +++ b/src/vs/workbench/parts/extensions/electron-browser/media/extensions.css @@ -49,6 +49,10 @@ margin-right: 2px; } +.quick-open-widget .extension .icon.octicon-x:before { + margin-right: 2px; +} + .quick-open-widget .extension .published { float: right; opacity: 0.6; From 8fe4d6defd92c04b8dda7bccddfe4dc1eaf1b983 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 09:53:53 +0200 Subject: [PATCH 055/117] debug: improve wording #4987 --- .../workbench/parts/debug/electron-browser/debugService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 69f3e0c4df7..3d78702c24e 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -558,10 +558,10 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService } this.messageService.show(severity.Error, { - message: errorCount > 1 ? nls.localize('preLaunchTaskErrors', "Errors detected while running the preLaunchTask '{0}'.", configuration.preLaunchTask) : - errorCount === 1 ? nls.localize('preLaunchTaskError', "Error detected while running the preLaunchTask '{0}'.", configuration.preLaunchTask) : + message: errorCount > 1 ? nls.localize('preLaunchTaskErrors', "Build errors have been detected during preLaunchTask '{0}'.", configuration.preLaunchTask) : + errorCount === 1 ? nls.localize('preLaunchTaskError', "Build error has been detected during preLaunchTask '{0}'.", configuration.preLaunchTask) : nls.localize('preLaunchTaskExitCode', "The preLaunchTask '{0}' terminated with exit code {1}.", configuration.preLaunchTask, taskSummary.exitCode), - actions: [CloseAction, new Action('debug.continue', nls.localize('continue', "Continue"), null, true, () => { + actions: [CloseAction, new Action('debug.continue', nls.localize('debugAnyway', "Debug Anyway"), null, true, () => { this.messageService.hideAll(); return this.doCreateSession(configuration, changeViewState); })] From 7c4c828dcbf46e243a4c523b57873394e7deac6a Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 09:55:28 +0200 Subject: [PATCH 056/117] no more weakness --- build/gulpfile.vscode.js | 5 +-- npm-shrinkwrap.json | 17 --------- package.json | 1 - src/typings/weak.d.ts | 28 -------------- src/vs/workbench/api/node/extHostDocuments.ts | 38 ++++--------------- 5 files changed, 10 insertions(+), 79 deletions(-) delete mode 100644 src/typings/weak.d.ts diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index f6253d55dd8..1d88c0fea0e 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -32,7 +32,7 @@ var baseModules = [ 'events', 'fs', 'getmac', 'glob', 'graceful-fs', 'http', 'http-proxy-agent', 'https', 'https-proxy-agent', 'iconv-lite', 'electron', 'net', 'os', 'path', 'readline', 'sax', 'semver', 'stream', 'string_decoder', 'url', - 'vscode-textmate', 'winreg', 'yauzl', 'native-keymap', 'weak', 'zlib' + 'vscode-textmate', 'winreg', 'yauzl', 'native-keymap', 'zlib' ]; // Build @@ -201,8 +201,7 @@ function packageTask(platform, arch, opts) { .pipe(util.cleanNodeModule('fsevents', ['binding.gyp', 'fsevents.cc', 'build/**', 'src/**', 'test/**'], true)) .pipe(util.cleanNodeModule('oniguruma', ['binding.gyp', 'build/**', 'src/**', 'deps/**'], true)) .pipe(util.cleanNodeModule('windows-mutex', ['binding.gyp', 'build/**', 'src/**'], true)) - .pipe(util.cleanNodeModule('native-keymap', ['binding.gyp', 'build/**', 'src/**', 'deps/**'], true)) - .pipe(util.cleanNodeModule('weak', ['binding.gyp', 'build/**', 'src/**'], true)); + .pipe(util.cleanNodeModule('native-keymap', ['binding.gyp', 'build/**', 'src/**', 'deps/**'], true)); var all = es.merge( api, diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index bf99d2f3dc6..6ffa2fe8eef 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -449,23 +449,6 @@ "from": "native-keymap@0.1.2", "resolved": "https://registry.npmjs.org/native-keymap/-/native-keymap-0.1.2.tgz" }, - "weak": { - "version": "1.0.1", - "from": "weak@1.0.1", - "resolved": "https://registry.npmjs.org/weak/-/weak-1.0.1.tgz", - "dependencies": { - "bindings": { - "version": "1.2.1", - "from": "bindings@>=1.2.1 <2.0.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz" - }, - "nan": { - "version": "2.2.0", - "from": "nan@>=2.0.5 <3.0.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.2.0.tgz" - } - } - }, "winreg": { "version": "0.0.12", "from": "winreg@0.0.12", diff --git a/package.json b/package.json index c538a5e278e..f81ad6b6dbf 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,6 @@ "semver": "^4.2.0", "vscode-debugprotocol": "1.8.0-pre.3", "vscode-textmate": "^1.0.11", - "weak": "^1.0.1", "winreg": "0.0.12", "yauzl": "^2.3.1" }, diff --git a/src/typings/weak.d.ts b/src/typings/weak.d.ts deleted file mode 100644 index 39d1d930dc8..00000000000 --- a/src/typings/weak.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -declare namespace weak { - interface WeakRef { - // tagging - } -} - -declare const weak: WeakFunction; - -interface WeakFunction { - (obj: T, callback?: () => any): T & weak.WeakRef; - (obj: any, callback?: () => any): any & weak.WeakRef; - - get(ref: weak.WeakRef): any; - get(ref: weak.WeakRef): T; - - isDead(ref: weak.WeakRef): boolean; - isNearDeath(ref: weak.WeakRef): boolean; - isWeakRef(obj: any): boolean; -} - -declare module 'weak' { - export = weak; -} \ No newline at end of file diff --git a/src/vs/workbench/api/node/extHostDocuments.ts b/src/vs/workbench/api/node/extHostDocuments.ts index d70c8f25467..9a458cda396 100644 --- a/src/vs/workbench/api/node/extHostDocuments.ts +++ b/src/vs/workbench/api/node/extHostDocuments.ts @@ -26,7 +26,6 @@ import {IModeService} from 'vs/editor/common/services/modeService'; import {IUntitledEditorService} from 'vs/workbench/services/untitled/common/untitledEditorService'; import {ResourceEditorInput} from 'vs/workbench/common/editor/resourceEditorInput'; import {asWinJsPromise} from 'vs/base/common/async'; -import * as weak from 'weak'; export interface IModelAddedData { url: URI; @@ -170,14 +169,6 @@ export class ExtHostModelService { return asWinJsPromise(token => provider.provideTextDocumentContent(uri, token)); } - $isDocumentReferenced(uri: URI): TPromise { - const key = uri.toString(); - const document = this._documentData[key]; - if (document) { - return TPromise.as(document.isDocumentReferenced); - } - } - public _acceptModelAdd(initData: IModelAddedData): void { let data = new ExtHostDocumentData(this._proxy, initData.url, initData.value.lines, initData.value.EOL, initData.modeId, initData.versionId, initData.isDirty); let key = data.document.uri.toString(); @@ -246,7 +237,7 @@ export class ExtHostDocumentData extends MirrorModel2 { private _languageId: string; private _isDirty: boolean; private _textLines: vscode.TextLine[]; - private _documentRef: weak.WeakRef & vscode.TextDocument; + private _document: vscode.TextDocument; constructor(proxy: MainThreadDocuments, uri: URI, lines: string[], eol: string, languageId: string, versionId: number, isDirty: boolean) { @@ -265,13 +256,9 @@ export class ExtHostDocumentData extends MirrorModel2 { } get document(): vscode.TextDocument { - // dereferences or creates the actual document for this - // document data. keeps a weak reference only such that - // we later when a document isn't needed anymore - - if (!this.isDocumentReferenced) { + if (!this._document) { const data = this; - const doc = { + this._document = { get uri() { return data._uri; }, get fileName() { return data._uri.fsPath; }, get isUntitled() { return data._uri.scheme !== 'file'; }, @@ -288,13 +275,8 @@ export class ExtHostDocumentData extends MirrorModel2 { validatePosition(pos) { return data.validatePosition(pos); }, getWordRangeAtPosition(pos) { return data.getWordRangeAtPosition(pos); } }; - this._documentRef = weak(doc); } - return weak.get(this._documentRef); - } - - get isDocumentReferenced(): boolean { - return weak.isWeakRef(this._documentRef) && !weak.isDead(this._documentRef); + return this._document; } _acceptLanguageId(newLanguageId: string): void { @@ -507,7 +489,7 @@ export class MainThreadDocuments { } })); - const handle = setInterval(() => this._runDocumentCleanup(), 30 * 1000); + const handle = setInterval(() => this._runDocumentCleanup(), 1000 * 60 * 3); this._toDispose.push({ dispose() { clearInterval(handle); } }); this._modelToDisposeMap = Object.create(null); @@ -676,13 +658,9 @@ export class MainThreadDocuments { TPromise.join(Object.keys(this._virtualDocumentSet).map(key => { let resource = URI.parse(key); - return this._proxy.$isDocumentReferenced(resource).then(referenced => { - if (!referenced) { - return this._editorService.inputToType({ resource }).then(input => { - if (!this._editorService.isVisible(input, true)) { - toBeDisposed.push(resource); - } - }); + return this._editorService.inputToType({ resource }).then(input => { + if (!this._editorService.isVisible(input, true)) { + toBeDisposed.push(resource); } }); })).then(() => { From 58f65e9a8eadb56a1af2db45777d923f99183296 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Wed, 13 Apr 2016 10:33:56 +0200 Subject: [PATCH 057/117] collect all licenses --- build/gulpfile.vscode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 1d88c0fea0e..0bd9e6add88 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -190,7 +190,7 @@ function packageTask(platform, arch, opts) { version: version })); - var license = gulp.src(['Credits_*', 'LICENSE.txt', 'ThirdPartyNotices.txt'], { base: '.' }); + var license = gulp.src(['Credits_*', 'LICENSE.txt', 'ThirdPartyNotices.txt', 'licenses/**'], { base: '.' }); var api = gulp.src('src/vs/vscode.d.ts').pipe(rename('out/vs/vscode.d.ts')); var depsSrc = _.flatten(Object.keys(packageJson.dependencies).concat(Object.keys(packageJson.optionalDependencies)) From 7f88dfab58dcfe6f3fa88d4e0639d72dfa2b13fc Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 10:36:12 +0200 Subject: [PATCH 058/117] debug: improve green color for repl --- src/vs/workbench/parts/debug/browser/media/repl.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/browser/media/repl.css b/src/vs/workbench/parts/debug/browser/media/repl.css index afc18fb2d47..7d1c32433ac 100644 --- a/src/vs/workbench/parts/debug/browser/media/repl.css +++ b/src/vs/workbench/parts/debug/browser/media/repl.css @@ -245,7 +245,7 @@ .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code30, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code90 { color: gray; } .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code31, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code91 { color: #BE1717; } -.monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code32, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code92 { color: darkgreen; } +.monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code32, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code92 { color: #338A2F; } .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code33, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code93 { color: #BEB817; } .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code34, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code94 { color: darkblue; } .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code35, .monaco-workbench .repl .repl-tree .monaco-tree .monaco-tree-row > .content > .output.expression .code95 { color: darkmagenta; } From 9261bc5d6d5ab7d3bb656488ed656f0a5aa5506d Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 11:09:25 +0200 Subject: [PATCH 059/117] Travis build failing #5209 --- src/vs/languages/json/common/jsonSchemaService.ts | 5 +++-- src/vs/workbench/electron-main/update-manager.ts | 3 +-- src/vs/workbench/parts/extensions/common/extensionsUtil.ts | 4 ++-- src/vs/workbench/parts/files/common/explorerViewModel.ts | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/vs/languages/json/common/jsonSchemaService.ts b/src/vs/languages/json/common/jsonSchemaService.ts index 6bc047981e7..6c84bfc0a98 100644 --- a/src/vs/languages/json/common/jsonSchemaService.ts +++ b/src/vs/languages/json/common/jsonSchemaService.ts @@ -2,6 +2,9 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ + +'use strict'; + import nls = require('vs/nls'); import Objects = require('vs/base/common/objects'); import Json = require('vs/base/common/json'); @@ -18,8 +21,6 @@ import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace'; import {ISchemaContributions} from 'vs/platform/jsonschemas/common/jsonContributionRegistry'; import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; -'use strict'; - export interface IJSONSchemaService { /** diff --git a/src/vs/workbench/electron-main/update-manager.ts b/src/vs/workbench/electron-main/update-manager.ts index 967b06a3900..719c9334419 100644 --- a/src/vs/workbench/electron-main/update-manager.ts +++ b/src/vs/workbench/electron-main/update-manager.ts @@ -3,6 +3,7 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +'use strict'; import fs = require('fs'); import path = require('path'); @@ -16,8 +17,6 @@ import {Win32AutoUpdaterImpl} from 'vs/workbench/electron-main/auto-updater.win3 import {LinuxAutoUpdaterImpl} from 'vs/workbench/electron-main/auto-updater.linux'; import {manager as Lifecycle} from 'vs/workbench/electron-main/lifecycle'; -'use strict'; - export enum State { Uninitialized, Idle, diff --git a/src/vs/workbench/parts/extensions/common/extensionsUtil.ts b/src/vs/workbench/parts/extensions/common/extensionsUtil.ts index 9266187c462..ae487529d18 100644 --- a/src/vs/workbench/parts/extensions/common/extensionsUtil.ts +++ b/src/vs/workbench/parts/extensions/common/extensionsUtil.ts @@ -3,13 +3,13 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +'use strict'; + import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; import { IExtension, IExtensionsService, IGalleryService } from 'vs/workbench/parts/extensions/common/extensions'; import { TPromise } from 'vs/base/common/winjs.base'; import * as semver from 'semver'; -'use strict'; - export function getExtensionId(extension: IExtension): string { return `${ extension.publisher }.${ extension.name }`; } diff --git a/src/vs/workbench/parts/files/common/explorerViewModel.ts b/src/vs/workbench/parts/files/common/explorerViewModel.ts index 8ad85d77763..a1567b89459 100644 --- a/src/vs/workbench/parts/files/common/explorerViewModel.ts +++ b/src/vs/workbench/parts/files/common/explorerViewModel.ts @@ -3,6 +3,8 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +'use strict'; + import assert = require('vs/base/common/assert'); import types = require('vs/base/common/types'); import URI from 'vs/base/common/uri'; @@ -11,8 +13,6 @@ import paths = require('vs/base/common/paths'); import {guessMimeTypes} from 'vs/base/common/mime'; import {IFileStat} from 'vs/platform/files/common/files'; -'use strict'; - export enum StatType { FILE, FOLDER, From 96c3dbc1d45ac08f7530293aba8b3a2188b89782 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 12:17:24 +0200 Subject: [PATCH 060/117] debug: better disposing of listeners fixes #5091 --- .../debug/electron-browser/debugService.ts | 27 +++++++++---------- .../parts/debug/node/rawDebugSession.ts | 4 +++ 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 3d78702c24e..82f5334f8d0 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -111,6 +111,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService this.model = new model.Model(this.loadBreakpoints(), this.storageService.getBoolean(DEBUG_BREAKPOINTS_ACTIVATED_KEY, StorageScope.WORKSPACE, true), this.loadFunctionBreakpoints(), this.loadExceptionBreakpoints(), this.loadWatchExpressions()); + this.toDispose.push(this.model); this.viewModel = new viewmodel.ViewModel(); this.registerListeners(eventService, lifecycleService); @@ -136,7 +137,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService lifecycleService.onShutdown(this.store, this); lifecycleService.onShutdown(this.dispose, this); - this.windowService.onBroadcast(this.onBroadcast, this); + this.toDispose.push(this.windowService.onBroadcast(this.onBroadcast, this)); } private onBroadcast(broadcast: IBroadcast): void { @@ -231,6 +232,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService } private registerSessionListeners(): void { + this.toDisposeOnSessionEnd.push(this.session); this.toDisposeOnSessionEnd.push(this.session.addListener2(debug.SessionEvents.INITIALIZED, (event: DebugProtocol.InitializedEvent) => { aria.status(nls.localize('debuggingStarted', "Debugging started.")); this.sendAllBreakpoints().then(() => { @@ -710,15 +712,8 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService } private onSessionEnd(): void { - try { - this.debugStringEditorInputs = lifecycle.dispose(this.debugStringEditorInputs); - } catch (e) { - // an internal module might be open so the dispose can throw -> ignore and continue with stop session. - } - if (this.session) { const bpsExist = this.model.getBreakpoints().length > 0; - this.session.dispose(); this.telemetryService.publicLog('debugSessionStop', { type: this.session.getType(), success: this.session.emittedStopped || !bpsExist, @@ -729,7 +724,12 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService } this.session = null; - this.toDisposeOnSessionEnd = lifecycle.dispose(this.toDisposeOnSessionEnd); + try { + this.toDisposeOnSessionEnd = lifecycle.dispose(this.toDisposeOnSessionEnd); + } catch (e) { + // an internal module might be open so the dispose can throw -> ignore and continue with stop session. + } + this.partService.removeClass('debugging'); this.editorService.focusEditor(); @@ -857,6 +857,8 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService if (filtered.length === 0) { const result = this.instantiationService.createInstance(DebugStringEditorInput, source.name, source.uri, source.origin, value, mtype, void 0); this.debugStringEditorInputs.push(result); + this.toDisposeOnSessionEnd.push(result); + return result; } else { return filtered[0]; @@ -933,12 +935,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService } public dispose(): void { - if (this.session) { - this.session.disconnect(); - this.session = null; - } - this.model.dispose(); - this.toDispose = lifecycle.dispose(this.toDispose); this.toDisposeOnSessionEnd = lifecycle.dispose(this.toDisposeOnSessionEnd); + this.toDispose = lifecycle.dispose(this.toDispose); } } diff --git a/src/vs/workbench/parts/debug/node/rawDebugSession.ts b/src/vs/workbench/parts/debug/node/rawDebugSession.ts index 1fad007f08c..318efc2b930 100644 --- a/src/vs/workbench/parts/debug/node/rawDebugSession.ts +++ b/src/vs/workbench/parts/debug/node/rawDebugSession.ts @@ -340,4 +340,8 @@ export class RawDebugSession extends v8.V8Protocol implements debug.IRawDebugSes } this.emit(debug.SessionEvents.SERVER_EXIT); } + + public dispose(): void { + this.disconnect().done(null, errors.onUnexpectedError); + } } From 84abe71111ac14dd58e14565a74a55af0ae6b797 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 15:07:21 +0200 Subject: [PATCH 061/117] Update to Electron 0.37.x (#2559) --- npm-shrinkwrap.json | 16 ++++----- package.json | 2 +- src/typings/electron.d.ts | 6 ++-- src/vs/base/browser/ui/dropdown/dropdown.ts | 13 +------ src/vs/workbench/api/node/extHostDocuments.ts | 2 +- .../workbench/electron-main/update-manager.ts | 7 ++++ src/vs/workbench/electron-main/window.ts | 2 +- .../electron-browser/textFileServices.ts | 17 +++++++--- .../electron-browser/contextmenuService.ts | 34 +++++++++---------- .../electron-browser/messageService.ts | 14 ++++++-- 10 files changed, 62 insertions(+), 51 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 6ffa2fe8eef..87e61522cd7 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "Code", - "version": "0.8.0-preview", + "version": "0.10.12", "dependencies": { "applicationinsights": { "version": "0.15.6", @@ -305,9 +305,9 @@ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", "dependencies": { "nan": { - "version": "2.0.8", + "version": "2.2.0", "from": "nan@>=2.0.2 <3.0.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.0.8.tgz" + "resolved": "https://registry.npmjs.org/nan/-/nan-2.2.0.tgz" } } } @@ -431,9 +431,9 @@ "resolved": "https://registry.npmjs.org/oniguruma/-/oniguruma-6.0.1.tgz", "dependencies": { "nan": { - "version": "2.0.9", + "version": "2.2.0", "from": "nan@>=2.0.9 <3.0.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.0.9.tgz" + "resolved": "https://registry.npmjs.org/nan/-/nan-2.2.0.tgz" } } }, @@ -481,9 +481,9 @@ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz" }, "nan": { - "version": "2.1.0", - "from": "nan@>=2.1.0 <3.0.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" + "version": "2.2.0", + "from": "nan@>=2.0.5 <3.0.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.2.0.tgz" } } } diff --git a/package.json b/package.json index f81ad6b6dbf..b7770eb6690 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Code", "version": "1.0.0", - "electronVersion": "0.35.6", + "electronVersion": "0.37.5", "author": { "name": "Microsoft Corporation" }, diff --git a/src/typings/electron.d.ts b/src/typings/electron.d.ts index cc46c9828d2..d850a218928 100644 --- a/src/typings/electron.d.ts +++ b/src/typings/electron.d.ts @@ -1278,6 +1278,7 @@ declare module Electron { icon?: NativeImage; noLink?: boolean; cancelId?: number; + defaultId?: number; } } @@ -1797,8 +1798,8 @@ declare module Electron { } class Session { - static fromPartition(partition: string): Session; - static defaultSession: Session; + fromPartition(partition: string): Session; + defaultSession: Session; cookies: any; clearCache(callback: Function): void; @@ -1811,6 +1812,7 @@ declare module Electron { disableNetworkEmulation(): void; setCertificateVerifyProc(proc: CertificateVerifyProc): void; webRequest: any; + flushStorageData(): void; } interface CommonElectron { diff --git a/src/vs/base/browser/ui/dropdown/dropdown.ts b/src/vs/base/browser/ui/dropdown/dropdown.ts index 91ddf27eebc..46be1fd66b1 100644 --- a/src/vs/base/browser/ui/dropdown/dropdown.ts +++ b/src/vs/base/browser/ui/dropdown/dropdown.ts @@ -80,7 +80,7 @@ export class BaseDropdown extends ActionRunner { e.preventDefault(); e.stopPropagation(); - this.toggleDropdown(); + this.show(); }).appendTo(this.$el); let cleanupFn = labelRenderer(this.$label.getHTMLElement()); @@ -96,14 +96,6 @@ export class BaseDropdown extends ActionRunner { this.$label.title(tooltip); } - /*protected*/ toggleDropdown(): void { - if (this.$el.hasClass('active')) { - this.hide(); - } else { - this.show(); - } - } - /*protected*/ show(): void { // noop } @@ -219,7 +211,6 @@ export class DropdownMenu extends BaseDropdown { /*protected*/ _contextMenuProvider: IContextMenuProvider; private _menuOptions: IMenuOptions; - /*protected*/ currentContainer: HTMLElement; /*protected*/ _actions: IAction[]; /*protected*/ actionProvider: IActionProvider; private menuClassName: string; @@ -228,7 +219,6 @@ export class DropdownMenu extends BaseDropdown { super(container, options); this._contextMenuProvider = options.contextMenuProvider; - this.currentContainer = null; this.actions = options.actions || []; this.actionProvider = options.actionProvider; this.menuClassName = options.menuClassName || ''; @@ -273,7 +263,6 @@ export class DropdownMenu extends BaseDropdown { getMenuClassName: () => this.menuClassName, onHide: () => { this.$el.removeClass('active'); - this.currentContainer = null; } }); } diff --git a/src/vs/workbench/api/node/extHostDocuments.ts b/src/vs/workbench/api/node/extHostDocuments.ts index 9a458cda396..8be2db27dbc 100644 --- a/src/vs/workbench/api/node/extHostDocuments.ts +++ b/src/vs/workbench/api/node/extHostDocuments.ts @@ -670,4 +670,4 @@ export class MainThreadDocuments { } }, onUnexpectedError); } -} +} \ No newline at end of file diff --git a/src/vs/workbench/electron-main/update-manager.ts b/src/vs/workbench/electron-main/update-manager.ts index 719c9334419..8f75421dacc 100644 --- a/src/vs/workbench/electron-main/update-manager.ts +++ b/src/vs/workbench/electron-main/update-manager.ts @@ -127,6 +127,13 @@ export class UpdateManager extends events.EventEmitter { return; } + // for some reason updating on Mac causes the local storage not to be flushed. + // we workaround this issue by forcing an explicit flush of the storage data. + // see also https://github.com/Microsoft/vscode/issues/172 + if (platform.isMacintosh) { + electron.session.defaultSession.flushStorageData(); + } + rawQuitAndUpdate(); }); } diff --git a/src/vs/workbench/electron-main/window.ts b/src/vs/workbench/electron-main/window.ts index 63f87c3fb0b..2cdf2a1e5b1 100644 --- a/src/vs/workbench/electron-main/window.ts +++ b/src/vs/workbench/electron-main/window.ts @@ -166,7 +166,7 @@ export class VSCodeWindow { // For VS theme we can show directly because background is white const usesLightTheme = /vs($| )/.test(storage.getItem(VSCodeWindow.themeStorageKey)); - let showDirectly = usesLightTheme; + let showDirectly = true; // set to false to prevent background color flash (flash should be fixed for Electron >= 0.37.x) if (showDirectly && !global.windowShow) { global.windowShow = new Date().getTime(); } diff --git a/src/vs/workbench/parts/files/electron-browser/textFileServices.ts b/src/vs/workbench/parts/files/electron-browser/textFileServices.ts index ddc1f361900..ac71468da12 100644 --- a/src/vs/workbench/parts/files/electron-browser/textFileServices.ts +++ b/src/vs/workbench/parts/files/electron-browser/textFileServices.ts @@ -9,7 +9,7 @@ import nls = require('vs/nls'); import {TPromise} from 'vs/base/common/winjs.base'; import paths = require('vs/base/common/paths'); import strings = require('vs/base/common/strings'); -import {isWindows} from 'vs/base/common/platform'; +import {isWindows, isLinux} from 'vs/base/common/platform'; import URI from 'vs/base/common/uri'; import {UntitledEditorModel} from 'vs/workbench/common/editor/untitledEditorModel'; import {IEventService} from 'vs/platform/event/common/event'; @@ -165,17 +165,20 @@ export class TextFileService extends AbstractTextFileService { // Button order // Windows: Save | Don't Save | Cancel - // Mac/Linux: Save | Cancel | Don't + // Mac: Save | Cancel | Don't Save + // Linux: Don't Save | Cancel | Save const save = { label: resourcesToConfirm.length > 1 ? this.mnemonicLabel(nls.localize({ key: 'saveAll', comment: ['&& denotes a mnemonic'] }, "&&Save All")) : this.mnemonicLabel(nls.localize({ key: 'save', comment: ['&& denotes a mnemonic'] }, "&&Save")), result: ConfirmResult.SAVE }; const dontSave = { label: this.mnemonicLabel(nls.localize({ key: 'dontSave', comment: ['&& denotes a mnemonic'] }, "Do&&n't Save")), result: ConfirmResult.DONT_SAVE }; const cancel = { label: nls.localize('cancel', "Cancel"), result: ConfirmResult.CANCEL }; - const buttons = [save]; + const buttons = []; if (isWindows) { - buttons.push(dontSave, cancel); + buttons.push(save, dontSave, cancel); + } else if (isLinux) { + buttons.push(dontSave, cancel, save); } else { - buttons.push(cancel, dontSave); + buttons.push(save, cancel, dontSave); } let opts: Electron.Dialog.ShowMessageBoxOptions = { @@ -188,6 +191,10 @@ export class TextFileService extends AbstractTextFileService { cancelId: buttons.indexOf(cancel) }; + if (isLinux) { + opts.defaultId = 2; + } + const choice = this.windowService.getWindow().showMessageBox(opts); return buttons[choice].result; diff --git a/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts b/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts index 9512b7408b4..f50127166a6 100644 --- a/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts +++ b/src/vs/workbench/services/contextview/electron-browser/contextmenuService.ts @@ -7,7 +7,7 @@ import {TPromise} from 'vs/base/common/winjs.base'; import severity from 'vs/base/common/severity'; -import actions = require('vs/base/common/actions'); +import {IAction} from 'vs/base/common/actions'; import {Separator} from 'vs/base/browser/ui/actionbar/actionbar'; import dom = require('vs/base/browser/dom'); import {$} from 'vs/base/browser/builder'; @@ -40,7 +40,6 @@ export class ContextMenuService implements IContextMenuService { return TPromise.timeout(0).then(() => { // https://github.com/Microsoft/vscode/issues/3638 let menu = new remote.Menu(); - let actionToRun: actions.IAction = null; actions.forEach(a => { if (a instanceof Separator) { @@ -55,7 +54,7 @@ export class ContextMenuService implements IContextMenuService { accelerator, enabled: a.enabled, click: () => { - actionToRun = a; + this.runAction(a, delegate); } }); @@ -84,21 +83,20 @@ export class ContextMenuService implements IContextMenuService { y *= zoom; menu.popup(remote.getCurrentWindow(), Math.floor(x), Math.floor(y)); - - if (delegate.onHide) { - delegate.onHide(false); - } - - if (!actionToRun) { - return; - } - - this.telemetryService.publicLog('workbenchActionExecuted', { id: actionToRun.id, from: 'contextMenu' }); - - const context = delegate.getActionsContext ? delegate.getActionsContext() : null; - return actionToRun.run(context) || TPromise.as(null); }); - }) - .done(null, e => this.messageService.show(severity.Error, e)); + }); + } + + private runAction(actionToRun: IAction, delegate: IContextMenuDelegate): void { + if (delegate.onHide) { + delegate.onHide(false); + } + + this.telemetryService.publicLog('workbenchActionExecuted', { id: actionToRun.id, from: 'contextMenu' }); + + const context = delegate.getActionsContext ? delegate.getActionsContext() : null; + const res = actionToRun.run(context) || TPromise.as(null); + + res.done(null, e => this.messageService.show(severity.Error, e)); } } diff --git a/src/vs/workbench/services/message/electron-browser/messageService.ts b/src/vs/workbench/services/message/electron-browser/messageService.ts index 5fedbd68b6e..f46a92ed5dc 100644 --- a/src/vs/workbench/services/message/electron-browser/messageService.ts +++ b/src/vs/workbench/services/message/electron-browser/messageService.ts @@ -9,7 +9,7 @@ import {IWindowService} from 'vs/workbench/services/window/electron-browser/wind import nls = require('vs/nls'); import {WorkbenchMessageService} from 'vs/workbench/services/message/browser/messageService'; import {IConfirmation} from 'vs/platform/message/common/message'; -import {isWindows} from 'vs/base/common/platform'; +import {isWindows, isLinux} from 'vs/base/common/platform'; import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {IKeybindingService} from 'vs/platform/keybinding/common/keybindingService'; import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace'; @@ -38,19 +38,27 @@ export class MessageService extends WorkbenchMessageService { title: confirmation.title || this.contextService.getConfiguration().env.appName, message: confirmation.message, buttons: [ - this.mnemonicLabel(confirmation.primaryButton), - this.mnemonicLabel(confirmation.secondaryButton) + isLinux ? this.mnemonicLabel(confirmation.secondaryButton) : this.mnemonicLabel(confirmation.primaryButton), + isLinux ? this.mnemonicLabel(confirmation.primaryButton) : this.mnemonicLabel(confirmation.secondaryButton) ], noLink: true, cancelId: 1 }; + if (isLinux) { + opts.defaultId = 1; // Linux: buttons are swapped + } + if (confirmation.detail) { opts.detail = confirmation.detail; } let result = this.windowService.getWindow().showMessageBox(opts); + if (isLinux) { + return result === 1 ? true : false; // Linux: buttons are swapped + } + return result === 0 ? true : false; } From fed1b64d231018d2ddca6a55ea7e7dda6c7e5a66 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 15:22:56 +0200 Subject: [PATCH 062/117] esc to cancel search when focus is in tree and search is running --- .../parts/search/browser/searchViewlet.ts | 39 +++++++++++++------ 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/src/vs/workbench/parts/search/browser/searchViewlet.ts b/src/vs/workbench/parts/search/browser/searchViewlet.ts index 7ed4bcafcf6..77d53b429eb 100644 --- a/src/vs/workbench/parts/search/browser/searchViewlet.ts +++ b/src/vs/workbench/parts/search/browser/searchViewlet.ts @@ -157,13 +157,22 @@ export class SearchAccessibilityProvider implements IAccessibilityProvider { class SearchController extends DefaultController { - constructor() { + constructor(private viewlet: SearchViewlet) { super({ clickBehavior: ClickBehavior.ON_MOUSE_DOWN }); this.downKeyBindingDispatcher.set(CommonKeybindings.DELETE, (tree: ITree, event: any) => { this.onDelete(tree, event); }); + this.downKeyBindingDispatcher.set(CommonKeybindings.ESCAPE, (tree: ITree, event: any) => { this.onEscape(tree, event); }); } - private onDelete(tree: ITree, event: any): boolean { + protected onEscape(tree: ITree, event:IKeyboardEvent):boolean { + if (this.viewlet.cancelSearch()) { + return true; + } + + return super.onEscape(tree, event); + } + + private onDelete(tree: ITree, event: IKeyboardEvent): boolean { let result = false; let elements = tree.getSelection(); for (let i = 0; i < elements.length; i++) { @@ -711,13 +720,7 @@ export class SearchViewlet extends Viewlet { if (keyboardEvent.keyCode === KeyCode.Enter) { this.onQueryChanged(true); } else if (keyboardEvent.keyCode === KeyCode.Escape) { - this.findInput.focus(); - this.findInput.select(); - - if (this.currentRequest) { - this.currentRequest.cancel(); - this.currentRequest = null; - } + this.cancelSearch(); } }; @@ -870,7 +873,7 @@ export class SearchViewlet extends Viewlet { renderer: renderer, sorter: new SearchSorter(), filter: new SearchFilter(), - controller: new SearchController(), + controller: new SearchController(this), accessibilityProvider: this.instantiationService.createInstance(SearchAccessibilityProvider) }, { ariaLabel: nls.localize('treeAriaLabel', "Search Results") @@ -1015,6 +1018,20 @@ export class SearchViewlet extends Viewlet { } } + public cancelSearch(): boolean { + if (this.currentRequest) { + this.findInput.focus(); + this.findInput.select(); + + this.currentRequest.cancel(); + this.currentRequest = null; + + return true; + } + + return false; + } + private selectTreeIfNotSelected(keyboardEvent: IKeyboardEvent): void { if (this.tree.getInput()) { this.tree.DOMFocus(); @@ -1487,4 +1504,4 @@ export class SearchViewlet extends Viewlet { } lifecycle.cAll(this.callOnModelChange); } -} \ No newline at end of file +} From b7242fa48af331b54a5fa8a4b75472a226cb6dfb Mon Sep 17 00:00:00 2001 From: xzper Date: Wed, 13 Apr 2016 21:29:11 +0800 Subject: [PATCH 063/117] fixes #5206 (#5212) --- src/vs/base/parts/quickopen/browser/quickOpenModel.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vs/base/parts/quickopen/browser/quickOpenModel.ts b/src/vs/base/parts/quickopen/browser/quickOpenModel.ts index 75e7c1a855a..208acd672c3 100644 --- a/src/vs/base/parts/quickopen/browser/quickOpenModel.ts +++ b/src/vs/base/parts/quickopen/browser/quickOpenModel.ts @@ -644,6 +644,7 @@ class Renderer implements IRenderer { // Description data.description.set(entry.getDescription(), descriptionHighlights || []); + data.description.element.title = entry.getDescription(); } } @@ -756,4 +757,4 @@ export class QuickOpenModel implements run(entry: QuickOpenEntry, mode: Mode, context: IContext): boolean { return entry.run(mode, context); } -} \ No newline at end of file +} From 51ecddbfa3b2f53104dd76a472f1d0fa17235056 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 15:30:09 +0200 Subject: [PATCH 064/117] Cannot read property 'contents' of undefined (fixes #5147) --- src/vs/platform/configuration/common/model.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vs/platform/configuration/common/model.ts b/src/vs/platform/configuration/common/model.ts index 3af5a084e54..63c32f305f7 100644 --- a/src/vs/platform/configuration/common/model.ts +++ b/src/vs/platform/configuration/common/model.ts @@ -80,9 +80,8 @@ export function consolidate(configMap: { [key: string]: IConfigFile; }): { conte // For each config file in .vscode folder Object.keys(configMap).forEach((configFileName) => { let config = objects.clone(configMap[configFileName]); - let matches = regexp.exec(configFileName); - if (!matches) { + if (!matches || !config) { return; } From 8668833582bec7cd24f4fe7e94976a3f54687800 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 15:43:57 +0200 Subject: [PATCH 065/117] Running extension host tests should not reopen last opened workspace (fixes #5224) --- src/vs/workbench/electron-main/windows.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/electron-main/windows.ts b/src/vs/workbench/electron-main/windows.ts index 5b080c03884..f70665a9572 100644 --- a/src/vs/workbench/electron-main/windows.ts +++ b/src/vs/workbench/electron-main/windows.ts @@ -663,8 +663,8 @@ export class WindowsManager { return; } - // Fill in previously opened workspace unless an explicit path is provided - if (openConfig.cli.pathArguments.length === 0) { + // Fill in previously opened workspace unless an explicit path is provided and we are not unit testing + if (openConfig.cli.pathArguments.length === 0 && !openConfig.cli.extensionTestsPath) { let workspaceToOpen = this.windowsState.lastPluginDevelopmentHostWindow && this.windowsState.lastPluginDevelopmentHostWindow.workspacePath; if (workspaceToOpen) { openConfig.cli.pathArguments = [workspaceToOpen]; From 9bc2c6cb00ed8ec276004a70b207d08ebcc9a7aa Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 11:48:34 +0200 Subject: [PATCH 066/117] debt - remove setInstantionService from ITelemetryService interface, #5219 --- .../browser/standalone/standaloneServices.ts | 4 -- .../common/abstractTelemetryService.ts | 50 ------------------- src/vs/platform/telemetry/common/telemetry.ts | 44 ++++++++++++++-- .../test/node/telemetryService.test.ts | 39 +++++++-------- src/vs/workbench/browser/workbench.ts | 5 +- .../appInsights.telemetry.contribution.ts | 16 +++--- 6 files changed, 69 insertions(+), 89 deletions(-) diff --git a/src/vs/editor/browser/standalone/standaloneServices.ts b/src/vs/editor/browser/standalone/standaloneServices.ts index 7065d0ee281..c253ea3a99c 100644 --- a/src/vs/editor/browser/standalone/standaloneServices.ts +++ b/src/vs/editor/browser/standalone/standaloneServices.ts @@ -209,10 +209,6 @@ export function getOrCreateStaticServices(services?: IEditorOverrideServices): I if (threadService instanceof MainThreadService) { threadService.setInstantiationService(instantiationService); } - if (telemetryService instanceof MainTelemetryService) { - telemetryService.setInstantiationService(instantiationService); - } - return staticServices; } diff --git a/src/vs/platform/telemetry/common/abstractTelemetryService.ts b/src/vs/platform/telemetry/common/abstractTelemetryService.ts index 2a32b4a55dc..9cb4cf5363e 100644 --- a/src/vs/platform/telemetry/common/abstractTelemetryService.ts +++ b/src/vs/platform/telemetry/common/abstractTelemetryService.ts @@ -11,10 +11,7 @@ import Types = require('vs/base/common/types'); import Platform = require('vs/base/common/platform'); import {TimeKeeper, IEventsListener, ITimerEvent} from 'vs/base/common/timer'; import {safeStringify, withDefaults} from 'vs/base/common/objects'; -import {Registry} from 'vs/platform/platform'; import {ITelemetryService, ITelemetryAppender, ITelemetryInfo, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; -import {SyncDescriptor0} from 'vs/platform/instantiation/common/descriptors'; -import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; const DefaultTelemetryServiceConfig: ITelemetryServiceConfig = { enableHardIdle: true, @@ -34,7 +31,6 @@ export abstract class AbstractTelemetryService implements ITelemetryService { private timeKeeper: TimeKeeper; private appenders: ITelemetryAppender[]; private oldOnError: any; - private instantiationService: IInstantiationService; private timeKeeperListener: IEventsListener; private errorBuffer: { [stack: string]: any }; private errorFlushTimeout: number; @@ -203,16 +199,6 @@ export abstract class AbstractTelemetryService implements ITelemetryService { this.addErrortoBuffer(data); } - private loadTelemetryAppendersFromRegistery(): void { - let appendersRegistry = (Registry.as(Extenstions.TelemetryAppenders)).getTelemetryAppenderDescriptors(); - - for (let i = 0; i < appendersRegistry.length; i++) { - let descriptor = appendersRegistry[i]; - let appender = this.instantiationService.createInstance(descriptor); - this.addTelemetryAppender(appender); - } - } - public getTelemetryInfo(): TPromise { return TPromise.as({ instanceId: this.instanceId, @@ -271,43 +257,7 @@ export abstract class AbstractTelemetryService implements ITelemetryService { }; } - public setInstantiationService(instantiationService: IInstantiationService): void { - this.instantiationService = instantiationService; - - if (this.instantiationService) { - this.loadTelemetryAppendersFromRegistery(); - } - } - protected handleEvent(eventName: string, data?: any): void { throw new Error('Not implemented!'); } } - -export const Extenstions = { - TelemetryAppenders: 'telemetry.appenders' -}; - -export interface ITelemetryAppendersRegistry { - registerTelemetryAppenderDescriptor(appenderDescriptor: SyncDescriptor0): void; - getTelemetryAppenderDescriptors(): SyncDescriptor0[]; -} - -class TelemetryAppendersRegistry implements ITelemetryAppendersRegistry { - - private telemetryAppenderDescriptors: SyncDescriptor0[]; - - constructor() { - this.telemetryAppenderDescriptors = []; - } - - public registerTelemetryAppenderDescriptor(descriptor: SyncDescriptor0): void { - this.telemetryAppenderDescriptors.push(descriptor); - } - - public getTelemetryAppenderDescriptors(): SyncDescriptor0[] { - return this.telemetryAppenderDescriptors; - } -} - -Registry.add(Extenstions.TelemetryAppenders, new TelemetryAppendersRegistry()); \ No newline at end of file diff --git a/src/vs/platform/telemetry/common/telemetry.ts b/src/vs/platform/telemetry/common/telemetry.ts index 79e23e3c01e..7096d8c7420 100644 --- a/src/vs/platform/telemetry/common/telemetry.ts +++ b/src/vs/platform/telemetry/common/telemetry.ts @@ -4,10 +4,11 @@ *--------------------------------------------------------------------------------------------*/ 'use strict'; +import {Registry} from 'vs/platform/platform'; import {TPromise} from 'vs/base/common/winjs.base'; import {IDisposable} from 'vs/base/common/lifecycle'; import {ITimerEvent, nullEvent} from 'vs/base/common/timer'; -import {createDecorator, ServiceIdentifier, IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; +import {createDecorator, ServiceIdentifier, IInstantiationService, IConstructorSignature0} from 'vs/platform/instantiation/common/instantiation'; export const ID = 'telemetryService'; @@ -41,7 +42,15 @@ export interface ITelemetryService extends IDisposable { getAppendersCount(): number; getAppenders(): ITelemetryAppender[]; addTelemetryAppender(appender: ITelemetryAppender): IDisposable; - setInstantiationService(instantiationService: IInstantiationService): void; +} + +export const Extenstions = { + TelemetryAppenders: 'telemetry.appenders' +}; + +export interface ITelemetryAppendersRegistry { + registerTelemetryAppenderDescriptor(ctor: IConstructorSignature0): void; + activate(instantiationService: IInstantiationService): void; } export const NullTelemetryService: ITelemetryService = { @@ -58,8 +67,7 @@ export const NullTelemetryService: ITelemetryService = { sessionId: 'someValue.sessionId', machineId: 'someValue.machineId' }); - }, - setInstantiationService(instantiationService: IInstantiationService) {} + } }; export interface ITelemetryAppender extends IDisposable { @@ -78,6 +86,34 @@ export interface ITelemetryServiceConfig { cleanupPatterns?: RegExp[]; } +export class TelemetryAppendersRegistry implements ITelemetryAppendersRegistry { + + private _telemetryAppenderCtors: IConstructorSignature0[]; + + constructor() { + this._telemetryAppenderCtors = []; + } + + public registerTelemetryAppenderDescriptor(ctor: IConstructorSignature0): void { + this._telemetryAppenderCtors.push(ctor); + } + + public activate(instantiationService: IInstantiationService): void { + const service = instantiationService.getInstance(ITelemetryService); + for (let ctor of this._telemetryAppenderCtors) { + const instance = instantiationService.createInstance(ctor); + service.addTelemetryAppender(instance); + } + + // can only be done once + this._telemetryAppenderCtors = undefined; + } +} + +Registry.add(Extenstions.TelemetryAppenders, new TelemetryAppendersRegistry()); + +// --- util + export function anonymize(input: string): string { if (!input) { return input; diff --git a/src/vs/platform/telemetry/test/node/telemetryService.test.ts b/src/vs/platform/telemetry/test/node/telemetryService.test.ts index 82c02029a39..fc1955278df 100644 --- a/src/vs/platform/telemetry/test/node/telemetryService.test.ts +++ b/src/vs/platform/telemetry/test/node/telemetryService.test.ts @@ -12,9 +12,7 @@ import TelemetryService = require('vs/platform/telemetry/common/telemetry'); import InstantiationService = require('vs/platform/instantiation/common/instantiationService'); import Errors = require('vs/base/common/errors'); import Timer = require('vs/base/common/timer'); -import Platform = require('vs/platform/platform'); import * as sinon from 'sinon'; -import {createSyncDescriptor} from 'vs/platform/instantiation/common/descriptors'; const optInStatusEventName: string = 'optInStatus'; @@ -170,29 +168,28 @@ suite('TelemetryService', () => { service.dispose(); })); - test('load appenders from registry', sinon.test(function() { + test('TelemetryAppendersRegistry, activate', function() { + let registry = new TelemetryService.TelemetryAppendersRegistry(); + registry.registerTelemetryAppenderDescriptor(TestTelemetryAppender); - let testAppenderDescriptor = createSyncDescriptor(TestTelemetryAppender); - let registry = (Platform.Registry.as(AbstractTelemetryService.Extenstions.TelemetryAppenders)); - registry.registerTelemetryAppenderDescriptor(testAppenderDescriptor); + let callCount = 0; + let telemetryService: TelemetryService.ITelemetryService = { + addTelemetryAppender(appender) { + assert.ok(appender); + callCount += 1; + } + }; - let telemetryService = new MainTelemetryService.MainTelemetryService(); + let instantiationService = InstantiationService.createInstantiationService(); + instantiationService.addSingleton(TelemetryService.ITelemetryService, telemetryService); + registry.activate(instantiationService); + assert.equal(callCount, 1); - - let instantiationService = InstantiationService.createInstantiationService({}); - telemetryService.setInstantiationService(instantiationService); - assert.equal(telemetryService.getAppendersCount(), 1); - let testAppender1 = telemetryService.getAppenders()[0]; - //report event - telemetryService.publicLog('testEvent'); - assert.equal(testAppender1.getEventsCount(), 1); - - telemetryService.dispose(); - - //clean up registry for other tests - (registry).telemetryAppenderDescriptors = []; - })); + // registry is now active/read-only + assert.throws(() => registry.registerTelemetryAppenderDescriptor(TestTelemetryAppender)); + assert.throws(() => registry.activate(instantiationService)); + }); test('Disposing', sinon.test(function() { let service = new MainTelemetryService.MainTelemetryService(); diff --git a/src/vs/workbench/browser/workbench.ts b/src/vs/workbench/browser/workbench.ts index d0d6ba9e165..3dbcb6a39e8 100644 --- a/src/vs/workbench/browser/workbench.ts +++ b/src/vs/workbench/browser/workbench.ts @@ -58,7 +58,7 @@ import {IEventService} from 'vs/platform/event/common/event'; import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; import {ILifecycleService} from 'vs/platform/lifecycle/common/lifecycle'; import {IMessageService} from 'vs/platform/message/common/message'; -import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; +import {ITelemetryService, Extenstions as TelemetryExtensions} from 'vs/platform/telemetry/common/telemetry'; import {IThreadService} from 'vs/platform/thread/common/thread'; import {IExtensionService} from 'vs/platform/extensions/common/extensions'; import {AbstractThreadService} from 'vs/platform/thread/common/abstractThreadService'; @@ -411,7 +411,6 @@ export class Workbench implements IPartService { // Some services need to be set explicitly after all services are created (threadService).setInstantiationService(this.instantiationService); - this.telemetryService.setInstantiationService(this.instantiationService); (messageService).setWorkbenchServices(this.quickOpen, this.statusbarPart); this.quickOpen.setInstantiationService(this.instantiationService); this.statusbarPart.setInstantiationService(this.instantiationService); @@ -427,6 +426,8 @@ export class Workbench implements IPartService { Registry.as(ActionBarExtensions.Actionbar).setInstantiationService(this.instantiationService); Registry.as(WorkbenchExtensions.Workbench).setInstantiationService(this.instantiationService); Registry.as(EditorExtensions.Editors).setInstantiationService(this.instantiationService); + + Registry.as<{activate(s:IInstantiationService):void}>(TelemetryExtensions.TelemetryAppenders).activate(this.instantiationService); } private initSettings(): void { diff --git a/src/vs/workbench/parts/telemetry/node/appInsights.telemetry.contribution.ts b/src/vs/workbench/parts/telemetry/node/appInsights.telemetry.contribution.ts index 8faa7efcddf..59accb95e70 100644 --- a/src/vs/workbench/parts/telemetry/node/appInsights.telemetry.contribution.ts +++ b/src/vs/workbench/parts/telemetry/node/appInsights.telemetry.contribution.ts @@ -2,12 +2,12 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import Platform = require('vs/platform/platform'); -import AbstractTelemetryService = require('vs/platform/telemetry/common/abstractTelemetryService'); -import AppInsightsTelemetryAppender = require('vs/workbench/parts/telemetry/node/nodeAppInsightsTelemetryAppender'); -import {createSyncDescriptor} from 'vs/platform/instantiation/common/descriptors'; -const descriptor = createSyncDescriptor( - AppInsightsTelemetryAppender.NodeAppInsightsTelemetryAppender -); -(Platform.Registry.as(AbstractTelemetryService.Extenstions.TelemetryAppenders)).registerTelemetryAppenderDescriptor(descriptor); \ No newline at end of file +'use strict'; + +import Platform = require('vs/platform/platform'); +import {Extenstions, ITelemetryAppendersRegistry} from 'vs/platform/telemetry/common/telemetry'; +import AppInsightsTelemetryAppender = require('vs/workbench/parts/telemetry/node/nodeAppInsightsTelemetryAppender'); + +Platform.Registry.as(Extenstions.TelemetryAppenders) + .registerTelemetryAppenderDescriptor(AppInsightsTelemetryAppender.NodeAppInsightsTelemetryAppender); \ No newline at end of file From d8033acfd8f57b61c07d80f41ec6488c383bce1a Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 12:00:59 +0200 Subject: [PATCH 067/117] remove getAppenders function, #5219 --- src/vs/platform/telemetry/browser/mainTelemetryService.ts | 5 ++--- .../platform/telemetry/common/abstractTelemetryService.ts | 6 +----- src/vs/platform/telemetry/common/telemetry.ts | 2 -- src/vs/workbench/test/browser/servicesTestUtils.ts | 4 ---- 4 files changed, 3 insertions(+), 14 deletions(-) diff --git a/src/vs/platform/telemetry/browser/mainTelemetryService.ts b/src/vs/platform/telemetry/browser/mainTelemetryService.ts index 8e6e9187c2f..f49557a1bda 100644 --- a/src/vs/platform/telemetry/browser/mainTelemetryService.ts +++ b/src/vs/platform/telemetry/browser/mainTelemetryService.ts @@ -82,9 +82,8 @@ export class MainTelemetryService extends AbstractTelemetryService implements IT data = data && cloneAndChange(data, value => typeof value === 'string' ? this.cleanupInfo(value) : void 0); data = this.addCommonProperties(data); - let allAppenders = this.getAppenders(); - for (let i = 0; i < allAppenders.length; i++) { - allAppenders[i].log(eventName, data); + for (let appender of this.appenders) { + appender.log(eventName, data); } } diff --git a/src/vs/platform/telemetry/common/abstractTelemetryService.ts b/src/vs/platform/telemetry/common/abstractTelemetryService.ts index 9cb4cf5363e..987acb3d6a3 100644 --- a/src/vs/platform/telemetry/common/abstractTelemetryService.ts +++ b/src/vs/platform/telemetry/common/abstractTelemetryService.ts @@ -29,12 +29,12 @@ export abstract class AbstractTelemetryService implements ITelemetryService { public serviceId = ITelemetryService; private timeKeeper: TimeKeeper; - private appenders: ITelemetryAppender[]; private oldOnError: any; private timeKeeperListener: IEventsListener; private errorBuffer: { [stack: string]: any }; private errorFlushTimeout: number; + protected appenders: ITelemetryAppender[]; protected sessionId: string; protected instanceId: string; protected machineId: string; @@ -241,10 +241,6 @@ export abstract class AbstractTelemetryService implements ITelemetryService { return this.appenders.length; } - public getAppenders(): ITelemetryAppender[] { - return this.appenders; - } - public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { this.appenders.push(appender); return { diff --git a/src/vs/platform/telemetry/common/telemetry.ts b/src/vs/platform/telemetry/common/telemetry.ts index 7096d8c7420..c829a731079 100644 --- a/src/vs/platform/telemetry/common/telemetry.ts +++ b/src/vs/platform/telemetry/common/telemetry.ts @@ -40,7 +40,6 @@ export interface ITelemetryService extends IDisposable { * Appender operations */ getAppendersCount(): number; - getAppenders(): ITelemetryAppender[]; addTelemetryAppender(appender: ITelemetryAppender): IDisposable; } @@ -58,7 +57,6 @@ export const NullTelemetryService: ITelemetryService = { timedPublicLog(name: string, data?: any): ITimerEvent { return nullEvent; }, publicLog(eventName: string, data?: any): void { }, getAppendersCount(): number { return 0; }, - getAppenders(): any[] { return []; }, addTelemetryAppender(appender): IDisposable { return { dispose() { } }; }, dispose(): void { }, getTelemetryInfo(): TPromise { diff --git a/src/vs/workbench/test/browser/servicesTestUtils.ts b/src/vs/workbench/test/browser/servicesTestUtils.ts index 070976188ac..7aa6ba1a00a 100644 --- a/src/vs/workbench/test/browser/servicesTestUtils.ts +++ b/src/vs/workbench/test/browser/servicesTestUtils.ts @@ -148,10 +148,6 @@ export class TestTelemetryService implements ITelemetryService { return -1; } - getAppenders(): any[] { - return []; - } - addTelemetryAppender(appender): Lifecycle.IDisposable { return Lifecycle.empty; } From 2ded97f36623af87fde683605478252bc1fd60e0 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 12:11:06 +0200 Subject: [PATCH 068/117] move getAppendersCount into test only, #5219 --- .../telemetry/common/abstractTelemetryService.ts | 4 ---- src/vs/platform/telemetry/common/telemetry.ts | 5 ----- .../telemetry/test/node/telemetryService.test.ts | 14 ++++++++++---- src/vs/workbench/test/browser/servicesTestUtils.ts | 4 ---- 4 files changed, 10 insertions(+), 17 deletions(-) diff --git a/src/vs/platform/telemetry/common/abstractTelemetryService.ts b/src/vs/platform/telemetry/common/abstractTelemetryService.ts index 987acb3d6a3..82e95a2fbfa 100644 --- a/src/vs/platform/telemetry/common/abstractTelemetryService.ts +++ b/src/vs/platform/telemetry/common/abstractTelemetryService.ts @@ -237,10 +237,6 @@ export abstract class AbstractTelemetryService implements ITelemetryService { this.handleEvent(eventName, data); } - public getAppendersCount(): number { - return this.appenders.length; - } - public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { this.appenders.push(appender); return { diff --git a/src/vs/platform/telemetry/common/telemetry.ts b/src/vs/platform/telemetry/common/telemetry.ts index c829a731079..3ed58633bfa 100644 --- a/src/vs/platform/telemetry/common/telemetry.ts +++ b/src/vs/platform/telemetry/common/telemetry.ts @@ -36,10 +36,6 @@ export interface ITelemetryService extends IDisposable { getTelemetryInfo(): TPromise; - /** - * Appender operations - */ - getAppendersCount(): number; addTelemetryAppender(appender: ITelemetryAppender): IDisposable; } @@ -56,7 +52,6 @@ export const NullTelemetryService: ITelemetryService = { serviceId: undefined, timedPublicLog(name: string, data?: any): ITimerEvent { return nullEvent; }, publicLog(eventName: string, data?: any): void { }, - getAppendersCount(): number { return 0; }, addTelemetryAppender(appender): IDisposable { return { dispose() { } }; }, dispose(): void { }, getTelemetryInfo(): TPromise { diff --git a/src/vs/platform/telemetry/test/node/telemetryService.test.ts b/src/vs/platform/telemetry/test/node/telemetryService.test.ts index fc1955278df..7f533c28cdb 100644 --- a/src/vs/platform/telemetry/test/node/telemetryService.test.ts +++ b/src/vs/platform/telemetry/test/node/telemetryService.test.ts @@ -86,9 +86,15 @@ class ErrorTestingSettings { suite('TelemetryService', () => { + class AppenderCountTelemetryService extends MainTelemetryService.MainTelemetryService { + getAppendersCount() { + return this.appenders.length; + } + } + // Appenders test('No appenders', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new AppenderCountTelemetryService(); assert.equal(service.getAppendersCount(), 0); // log events @@ -101,7 +107,7 @@ suite('TelemetryService', () => { })); test('Add appender', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new AppenderCountTelemetryService(); assert.equal(service.getAppendersCount(), 0); let testAppender = new TestTelemetryAppender(); @@ -112,7 +118,7 @@ suite('TelemetryService', () => { })); test('Remove appender', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new AppenderCountTelemetryService(); assert.equal(service.getAppendersCount(), 0); let testAppender = new TestTelemetryAppender(); @@ -135,7 +141,7 @@ suite('TelemetryService', () => { })); test('Multiple appenders', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new AppenderCountTelemetryService(); assert.equal(service.getAppendersCount(), 0); let testAppender1 = new TestTelemetryAppender(); diff --git a/src/vs/workbench/test/browser/servicesTestUtils.ts b/src/vs/workbench/test/browser/servicesTestUtils.ts index 7aa6ba1a00a..6d0d35ac329 100644 --- a/src/vs/workbench/test/browser/servicesTestUtils.ts +++ b/src/vs/workbench/test/browser/servicesTestUtils.ts @@ -144,10 +144,6 @@ export class TestTelemetryService implements ITelemetryService { return null; } - getAppendersCount(): number { - return -1; - } - addTelemetryAppender(appender): Lifecycle.IDisposable { return Lifecycle.empty; } From 1eed112338c842c7b0449b7575927e60be7cbdf2 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 12:13:57 +0200 Subject: [PATCH 069/117] replace TestTelemetryService with NullTelemetryService, #5219 --- .../test/browser/fileEditorModel.test.ts | 5 ++-- .../test/browser/servicesTestUtils.ts | 23 ------------------- 2 files changed, 3 insertions(+), 25 deletions(-) diff --git a/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts b/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts index 8f90d4c62e2..70dfe308f00 100644 --- a/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts +++ b/src/vs/workbench/parts/files/test/browser/fileEditorModel.test.ts @@ -12,10 +12,11 @@ import paths = require('vs/base/common/paths'); import {FileEditorInput} from 'vs/workbench/parts/files/browser/editors/fileEditorInput'; import {TextFileEditorModel, CACHE} from 'vs/workbench/parts/files/common/editors/textFileEditorModel'; import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; +import {NullTelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {TextFileService} from 'vs/workbench/parts/files/browser/textFileServices'; import {EventType} from 'vs/workbench/parts/files/common/files'; -import {TestFileService, TestLifecycleService, TestPartService, TestEditorService, TestConfigurationService, TestUntitledEditorService, TestStorageService, TestTelemetryService, TestContextService, TestMessageService, TestEventService} from 'vs/workbench/test/browser/servicesTestUtils'; +import {TestFileService, TestLifecycleService, TestPartService, TestEditorService, TestConfigurationService, TestUntitledEditorService, TestStorageService, TestContextService, TestMessageService, TestEventService} from 'vs/workbench/test/browser/servicesTestUtils'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; function toResource(path) { @@ -38,7 +39,7 @@ suite('Files - TextFileEditorModel', () => { messageService: messageService, fileService: TestFileService, contextService: new TestContextService(), - telemetryService: new TestTelemetryService(), + telemetryService: NullTelemetryService, storageService: new TestStorageService(), untitledEditorService: new TestUntitledEditorService(), editorService: new TestEditorService(), diff --git a/src/vs/workbench/test/browser/servicesTestUtils.ts b/src/vs/workbench/test/browser/servicesTestUtils.ts index 6d0d35ac329..e4131caff04 100644 --- a/src/vs/workbench/test/browser/servicesTestUtils.ts +++ b/src/vs/workbench/test/browser/servicesTestUtils.ts @@ -26,12 +26,10 @@ import PartService = require('vs/workbench/services/part/common/partService'); import WorkspaceContextService = require('vs/workbench/services/workspace/common/contextService'); import {IEditorInput, IEditorModel, Position, IEditor, IResourceInput, ITextEditorModel} from 'vs/platform/editor/common/editor'; import {IEventService} from 'vs/platform/event/common/event'; -import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; import {IUntitledEditorService} from 'vs/workbench/services/untitled/common/untitledEditorService'; import {IMessageService, IConfirmation} from 'vs/platform/message/common/message'; import Lifecycle = require('vs/base/common/lifecycle'); import {BaseRequestService} from 'vs/platform/request/common/baseRequestService'; -import {ITelemetryService, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; import {IWorkspace, IConfiguration} from 'vs/platform/workspace/common/workspace'; export const TestWorkspace: IWorkspace = { @@ -130,27 +128,6 @@ export class TestMessageService implements IMessageService { } } -export class TestTelemetryService implements ITelemetryService { - public serviceId = ITelemetryService; - - getTelemetryInfo(): TPromise { - return TPromise.as(null); - } - - log(eventName: string, data?: any): void { } - publicLog(eventName: string, data?: any): void { } - - timedPublicLog(name: string, data?: any, isPublic?: boolean): any { - return null; - } - - addTelemetryAppender(appender): Lifecycle.IDisposable { - return Lifecycle.empty; - } - dispose(): void { } - setInstantiationService(instantiationService: IInstantiationService) { } -} - export class TestPartService implements PartService.IPartService { public serviceId = PartService.IPartService; From 3a2e67d1e9ff4768694b8079640da4d95bf19a3a Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 12:56:06 +0200 Subject: [PATCH 070/117] add RemoteTelemetry which implements ITelemetryService, remove AbstractRemoteTelemetryService, workerTelemetryService, extHostTelemetryService, #5219 --- .../standalone/standaloneCodeEditor.ts | 2 +- .../common/worker/editorWorkerServer.ts | 4 +- .../common/abstractRemoteTelemetryService.ts | 58 ----------------- .../common/remoteTelemetryService.ts | 62 +++++++++++++++++++ src/vs/platform/telemetry/common/telemetry.ts | 3 +- .../common/workerTelemetryService.ts | 16 ----- src/vs/workbench/api/node/extHostTelemetry.ts | 16 ----- src/vs/workbench/electron-browser/shell.ts | 2 +- src/vs/workbench/node/extensionHostMain.ts | 18 +++--- 9 files changed, 76 insertions(+), 105 deletions(-) delete mode 100644 src/vs/platform/telemetry/common/abstractRemoteTelemetryService.ts create mode 100644 src/vs/platform/telemetry/common/remoteTelemetryService.ts delete mode 100644 src/vs/platform/telemetry/common/workerTelemetryService.ts delete mode 100644 src/vs/workbench/api/node/extHostTelemetry.ts diff --git a/src/vs/editor/browser/standalone/standaloneCodeEditor.ts b/src/vs/editor/browser/standalone/standaloneCodeEditor.ts index a61d0df31a1..206ec9cd9e2 100644 --- a/src/vs/editor/browser/standalone/standaloneCodeEditor.ts +++ b/src/vs/editor/browser/standalone/standaloneCodeEditor.ts @@ -19,7 +19,7 @@ import {AbstractKeybindingService} from 'vs/platform/keybinding/browser/keybindi import {ICommandHandler, IKeybindingContextKey, IKeybindingService} from 'vs/platform/keybinding/common/keybindingService'; import {IMarkerService} from 'vs/platform/markers/common/markers'; import {Registry} from 'vs/platform/platform'; -import {RemoteTelemetryServiceHelper} from 'vs/platform/telemetry/common/abstractRemoteTelemetryService'; +import {RemoteTelemetryServiceHelper} from 'vs/platform/telemetry/common/remoteTelemetryService'; import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {DefaultConfig} from 'vs/editor/common/config/defaultConfig'; import {IActionDescriptor, ICodeEditorWidgetCreationOptions, IDiffEditorOptions, IModel} from 'vs/editor/common/editorCommon'; diff --git a/src/vs/editor/common/worker/editorWorkerServer.ts b/src/vs/editor/common/worker/editorWorkerServer.ts index 86bda9ace86..c5334971509 100644 --- a/src/vs/editor/common/worker/editorWorkerServer.ts +++ b/src/vs/editor/common/worker/editorWorkerServer.ts @@ -17,7 +17,7 @@ import {IExtensionDescription} from 'vs/platform/extensions/common/extensions'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {SecondaryMarkerService} from 'vs/platform/markers/common/markerService'; import {BaseRequestService} from 'vs/platform/request/common/baseRequestService'; -import {WorkerTelemetryService} from 'vs/platform/telemetry/common/workerTelemetryService'; +import {RemoteTelemetryService} from 'vs/platform/telemetry/common/remoteTelemetryService'; import {WorkerThreadService} from 'vs/platform/thread/common/workerThreadService'; import {BaseWorkspaceContextService} from 'vs/platform/workspace/common/baseWorkspaceContextService'; import {IWorkspace} from 'vs/platform/workspace/common/workspace'; @@ -93,7 +93,7 @@ export class EditorWorkerServer { this.threadService = new WorkerThreadService(mainThread.getRemoteCom()); this.threadService.setInstantiationService(createInstantiationService({ threadService: this.threadService })); - var telemetryServiceInstance = new WorkerTelemetryService(this.threadService); + var telemetryServiceInstance = new RemoteTelemetryService('workerTelemetry', this.threadService); var resourceService = new ResourceService(); var markerService = new SecondaryMarkerService(this.threadService); diff --git a/src/vs/platform/telemetry/common/abstractRemoteTelemetryService.ts b/src/vs/platform/telemetry/common/abstractRemoteTelemetryService.ts deleted file mode 100644 index 981e85bc45a..00000000000 --- a/src/vs/platform/telemetry/common/abstractRemoteTelemetryService.ts +++ /dev/null @@ -1,58 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ -'use strict'; - -import { TPromise } from 'vs/base/common/winjs.base'; -import AbstractTelemetryService = require('vs/platform/telemetry/common/abstractTelemetryService'); -import {ITelemetryService, ITelemetryInfo, ITelemetryAppender} from 'vs/platform/telemetry/common/telemetry'; -import {Remotable, IThreadService} from 'vs/platform/thread/common/thread'; -import {IDisposable} from 'vs/base/common/lifecycle'; -/** - * Helper always instantiated in the main process to receive telemetry events from remote telemetry services - */ -@Remotable.MainContext('RemoteTelemetryServiceHelper') -export class RemoteTelemetryServiceHelper { - - private _telemetryService: ITelemetryService; - - constructor( @ITelemetryService telemetryService: ITelemetryService) { - this._telemetryService = telemetryService; - } - - public _handleRemoteTelemetryEvent(eventName: string, data?: any): void { - this._telemetryService.publicLog(eventName, data); - } - - public getTelemetryInfo(): TPromise { - return this._telemetryService.getTelemetryInfo(); - } -} - -/** - * Base class for remote telemetry services (instantiated in extension host or in web workers) - */ -export class AbstractRemoteTelemetryService extends AbstractTelemetryService.AbstractTelemetryService implements ITelemetryService { - - private _proxy: RemoteTelemetryServiceHelper; - - constructor(threadService: IThreadService) { - // Log all events including public, since they will be forwarded to the main which will do the real filtering - super(); - this._proxy = threadService.getRemotable(RemoteTelemetryServiceHelper); - } - - getTelemetryInfo(): TPromise { - return this._proxy.getTelemetryInfo(); - } - - public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { - throw new Error('Telemetry appenders are not supported in this execution envirnoment'); - } - - protected handleEvent(eventName: string, data?: any): void { - this._proxy._handleRemoteTelemetryEvent(eventName, data); - } -} - diff --git a/src/vs/platform/telemetry/common/remoteTelemetryService.ts b/src/vs/platform/telemetry/common/remoteTelemetryService.ts new file mode 100644 index 00000000000..dc4c293b5fa --- /dev/null +++ b/src/vs/platform/telemetry/common/remoteTelemetryService.ts @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +'use strict'; + +import {notImplemented} from 'vs/base/common/errors'; +import {TPromise} from 'vs/base/common/winjs.base'; +import {ITelemetryService, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; +import {Remotable, IThreadService} from 'vs/platform/thread/common/thread'; + +/** + * Helper always instantiated in the main process to receive telemetry events from remote telemetry services + */ +@Remotable.MainContext('RemoteTelemetryServiceHelper') +export class RemoteTelemetryServiceHelper { + + private _telemetryService: ITelemetryService; + + constructor( @ITelemetryService telemetryService: ITelemetryService) { + this._telemetryService = telemetryService; + } + + public $publicLog(eventName: string, data?: any): void { + this._telemetryService.publicLog(eventName, data); + } + + public $getTelemetryInfo(): TPromise { + return this._telemetryService.getTelemetryInfo(); + } +} + +export class RemoteTelemetryService implements ITelemetryService { + + serviceId: any; + + private _name: string; + private _proxy: RemoteTelemetryServiceHelper; + + constructor(name: string, threadService: IThreadService) { + this._name = name; + this._proxy = threadService.getRemotable(RemoteTelemetryServiceHelper); + } + + getTelemetryInfo(): TPromise { + return this._proxy.$getTelemetryInfo(); + } + + publicLog(eventName: string, data?: any): void { + data = data || Object.create(null); + data[this._name] = true; + this._proxy.$publicLog(eventName, data); + } + + timedPublicLog(): any { + throw notImplemented(); + } + + addTelemetryAppender(): any { + throw notImplemented(); + } +} diff --git a/src/vs/platform/telemetry/common/telemetry.ts b/src/vs/platform/telemetry/common/telemetry.ts index 3ed58633bfa..4f4dd6d9dd3 100644 --- a/src/vs/platform/telemetry/common/telemetry.ts +++ b/src/vs/platform/telemetry/common/telemetry.ts @@ -20,7 +20,7 @@ export interface ITelemetryInfo { instanceId: string; } -export interface ITelemetryService extends IDisposable { +export interface ITelemetryService { serviceId: ServiceIdentifier; /** @@ -53,7 +53,6 @@ export const NullTelemetryService: ITelemetryService = { timedPublicLog(name: string, data?: any): ITimerEvent { return nullEvent; }, publicLog(eventName: string, data?: any): void { }, addTelemetryAppender(appender): IDisposable { return { dispose() { } }; }, - dispose(): void { }, getTelemetryInfo(): TPromise { return TPromise.as({ instanceId: 'someValue.instanceId', diff --git a/src/vs/platform/telemetry/common/workerTelemetryService.ts b/src/vs/platform/telemetry/common/workerTelemetryService.ts deleted file mode 100644 index 7293e74cdf1..00000000000 --- a/src/vs/platform/telemetry/common/workerTelemetryService.ts +++ /dev/null @@ -1,16 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ -'use strict'; - -import {AbstractRemoteTelemetryService} from 'vs/platform/telemetry/common/abstractRemoteTelemetryService'; - -export class WorkerTelemetryService extends AbstractRemoteTelemetryService { - - protected handleEvent(eventName: string, data?: any): void { - data = data || {}; - data['workerTelemetry'] = true; - super.handleEvent(eventName, data); - } -} \ No newline at end of file diff --git a/src/vs/workbench/api/node/extHostTelemetry.ts b/src/vs/workbench/api/node/extHostTelemetry.ts deleted file mode 100644 index dfa918c8fe8..00000000000 --- a/src/vs/workbench/api/node/extHostTelemetry.ts +++ /dev/null @@ -1,16 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ -'use strict'; - -import {AbstractRemoteTelemetryService} from 'vs/platform/telemetry/common/abstractRemoteTelemetryService'; - -export class ExtHostTelemetryService extends AbstractRemoteTelemetryService { - - protected handleEvent(eventName: string, data?: any): void { - data = data || {}; - data['pluginHostTelemetry'] = true; - super.handleEvent(eventName, data); - } -} \ No newline at end of file diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index 86d110f62a0..b9ddf0477ce 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -55,7 +55,7 @@ import {MainThreadFileSystemEventService} from 'vs/workbench/api/node/extHostFil import {MainThreadQuickOpen} from 'vs/workbench/api/node/extHostQuickOpen'; import {MainThreadStatusBar} from 'vs/workbench/api/node/extHostStatusBar'; import {MainThreadCommands} from 'vs/workbench/api/node/extHostCommands'; -import {RemoteTelemetryServiceHelper} from 'vs/platform/telemetry/common/abstractRemoteTelemetryService'; +import {RemoteTelemetryServiceHelper} from 'vs/platform/telemetry/common/remoteTelemetryService'; import {MainThreadDiagnostics} from 'vs/workbench/api/node/extHostDiagnostics'; import {MainThreadOutputService} from 'vs/workbench/api/node/extHostOutputService'; import {MainThreadMessageService} from 'vs/workbench/api/node/extHostMessageService'; diff --git a/src/vs/workbench/node/extensionHostMain.ts b/src/vs/workbench/node/extensionHostMain.ts index ac9da614f25..3257fb2a4bb 100644 --- a/src/vs/workbench/node/extensionHostMain.ts +++ b/src/vs/workbench/node/extensionHostMain.ts @@ -22,7 +22,7 @@ import {IInstantiationService } from 'vs/platform/instantiation/common/instantia import InstantiationService = require('vs/platform/instantiation/common/instantiationService'); import {ExtHostExtensionService} from 'vs/platform/extensions/common/nativeExtensionService'; import {ExtHostThreadService} from 'vs/platform/thread/common/extHostThreadService'; -import {ExtHostTelemetryService} from 'vs/workbench/api/node/extHostTelemetry'; +import {RemoteTelemetryService} from 'vs/platform/telemetry/common/remoteTelemetryService'; import {BaseRequestService} from 'vs/platform/request/common/baseRequestService'; import {BaseWorkspaceContextService} from 'vs/platform/workspace/common/baseWorkspaceContextService'; import {ModeServiceImpl} from 'vs/editor/common/services/modeServiceImpl'; @@ -59,20 +59,20 @@ export function createServices(remoteCom: IMainProcessExtHostIPC, initData: IIni let contextService = new BaseWorkspaceContextService(initData.contextService.workspace, initData.contextService.configuration, initData.contextService.options); let threadService = new ExtHostThreadService(remoteCom); threadService.setInstantiationService(InstantiationService.createInstantiationService({ threadService: threadService })); - let telemetryService = new ExtHostTelemetryService(threadService); + let telemetryService = new RemoteTelemetryService('pluginHostTelemetry', threadService); let requestService = new BaseRequestService(contextService, telemetryService); let modelService = threadService.getRemotable(ExtHostModelService); let extensionService = new ExtHostExtensionService(threadService, telemetryService); let modeService = new ModeServiceImpl(threadService, extensionService); let _services: any = { - contextService: contextService, - requestService: requestService, - modelService: modelService, - threadService: threadService, - modeService: modeService, - extensionService: extensionService, - telemetryService: telemetryService + contextService, + requestService, + modelService, + threadService, + modeService, + extensionService, + telemetryService }; let instantiationService = InstantiationService.createInstantiationService(_services); threadService.setInstantiationService(instantiationService); From 475562cb956d7d82ecb61911a2fb00b6a1288402 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 12:59:16 +0200 Subject: [PATCH 071/117] remove MockTelemetryServic, #5219 --- src/vs/editor/test/common/mocks/mockCodeEditor.ts | 5 ++--- .../telemetry/test/common/mockTelemetryService.ts | 11 ----------- 2 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 src/vs/platform/telemetry/test/common/mockTelemetryService.ts diff --git a/src/vs/editor/test/common/mocks/mockCodeEditor.ts b/src/vs/editor/test/common/mocks/mockCodeEditor.ts index dd9293da4b6..8c8730df36e 100644 --- a/src/vs/editor/test/common/mocks/mockCodeEditor.ts +++ b/src/vs/editor/test/common/mocks/mockCodeEditor.ts @@ -8,7 +8,7 @@ import {EventEmitter, IEventEmitter} from 'vs/base/common/eventEmitter'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {IKeybindingScopeLocation} from 'vs/platform/keybinding/common/keybindingService'; import {MockKeybindingService} from 'vs/platform/keybinding/test/common/mockKeybindingService'; -import {MockTelemetryService} from 'vs/platform/telemetry/test/common/mockTelemetryService'; +import {NullTelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {CommonCodeEditor} from 'vs/editor/common/commonCodeEditor'; import {CommonEditorConfiguration} from 'vs/editor/common/config/commonEditorConfig'; import {Cursor} from 'vs/editor/common/controller/cursor'; @@ -58,7 +58,7 @@ export function withMockCodeEditor(text:string[], options:editorCommon.ICodeEdit let codeEditorService = new MockCodeEditorService(); let keybindingService = new MockKeybindingService(); - let telemetryService = new MockTelemetryService(); + let telemetryService = NullTelemetryService; let instantiationService = createInstantiationService({ codeEditorService: codeEditorService, @@ -75,5 +75,4 @@ export function withMockCodeEditor(text:string[], options:editorCommon.ICodeEdit editor.dispose(); model.dispose(); keybindingService.dispose(); - telemetryService.dispose(); } diff --git a/src/vs/platform/telemetry/test/common/mockTelemetryService.ts b/src/vs/platform/telemetry/test/common/mockTelemetryService.ts deleted file mode 100644 index 7e8f5fcf3d7..00000000000 --- a/src/vs/platform/telemetry/test/common/mockTelemetryService.ts +++ /dev/null @@ -1,11 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ -'use strict'; - -import {AbstractTelemetryService} from 'vs/platform/telemetry/common/abstractTelemetryService'; -import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; - -export class MockTelemetryService extends AbstractTelemetryService implements ITelemetryService { -} From a87b48c3fff2c3fb6703e5fdd2e5e025e7983bd5 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 13:25:28 +0200 Subject: [PATCH 072/117] move abstractTelemetryService and mainTelemetryService into one file. prep merging, #5219 --- .../telemetry/browser/mainTelemetryService.ts | 322 +++++++++++++++--- .../common/abstractTelemetryService.ts | 255 -------------- .../electronTelemetryService.ts | 30 +- .../test/node/telemetryService.test.ts | 91 +++-- 4 files changed, 339 insertions(+), 359 deletions(-) delete mode 100644 src/vs/platform/telemetry/common/abstractTelemetryService.ts diff --git a/src/vs/platform/telemetry/browser/mainTelemetryService.ts b/src/vs/platform/telemetry/browser/mainTelemetryService.ts index f49557a1bda..ac0ee80f336 100644 --- a/src/vs/platform/telemetry/browser/mainTelemetryService.ts +++ b/src/vs/platform/telemetry/browser/mainTelemetryService.ts @@ -7,10 +7,248 @@ import * as Platform from 'vs/base/common/platform'; import * as uuid from 'vs/base/common/uuid'; -import {cloneAndChange} from 'vs/base/common/objects'; -import {AbstractTelemetryService} from 'vs/platform/telemetry/common/abstractTelemetryService'; -import {ITelemetryService, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; +import {ITelemetryService, ITelemetryServiceConfig, ITelemetryAppender, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; import {IdleMonitor, UserStatus} from 'vs/base/browser/idleMonitor'; +import {TPromise} from 'vs/base/common/winjs.base'; +import {IDisposable} from 'vs/base/common/lifecycle'; +import Errors = require('vs/base/common/errors'); +import {TimeKeeper, IEventsListener, ITimerEvent} from 'vs/base/common/timer'; +import {safeStringify, withDefaults, cloneAndChange} from 'vs/base/common/objects'; + + +const DefaultTelemetryServiceConfig: ITelemetryServiceConfig = { + enableHardIdle: true, + enableSoftIdle: true, + userOptIn: true, + cleanupPatterns: [] +}; + +/** + * Base class for main process telemetry services + */ +export abstract class AbstractTelemetryService implements ITelemetryService { + + public static ERROR_FLUSH_TIMEOUT: number = 5 * 1000; + + public serviceId = ITelemetryService; + + private _timeKeeper: TimeKeeper; + private _oldOnError: any; + private _timeKeeperListener: IEventsListener; + private _errorBuffer: { [stack: string]: any }; + private _errorFlushTimeout: number; + + protected _config: ITelemetryServiceConfig; + protected _sessionId: string; + protected _instanceId: string; + protected _machineId: string; + protected _appenders: ITelemetryAppender[] = []; + protected _toUnbind: any[] = []; + + constructor(config?: ITelemetryServiceConfig) { + this._config = withDefaults(config, DefaultTelemetryServiceConfig); + this._sessionId = 'SESSION_ID_NOT_SET'; + this._timeKeeper = new TimeKeeper(); + + this._timeKeeperListener = (events: ITimerEvent[]) => this._onTelemetryTimerEventStop(events); + this._timeKeeper.addListener(this._timeKeeperListener); + this._toUnbind.push(Errors.errorHandler.addListener(this._onErrorEvent.bind(this))); + + this._errorBuffer = Object.create(null); + this._enableGlobalErrorHandler(); + this._errorFlushTimeout = -1; + } + + private _onTelemetryTimerEventStop(events: ITimerEvent[]): void { + for (let i = 0; i < events.length; i++) { + let event = events[i]; + let data = event.data || {}; + data.duration = event.timeTaken(); + this.publicLog(event.name, data); + } + } + + private _onErrorEvent(e: any): void { + + if(!e) { + return; + } + + let error = Object.create(null); + + // unwrap nested errors from loader + if (e.detail && e.detail.stack) { + e = e.detail; + } + + // work around behavior in workerServer.ts that breaks up Error.stack + let stack = Array.isArray(e.stack) ? e.stack.join('\n') : e.stack; + let message = e.message ? e.message : safeStringify(e); + + // errors without a stack are not useful telemetry + if (!stack) { + return; + } + + error['message'] = this._cleanupInfo(message); + error['stack'] = this._cleanupInfo(stack); + + this._addErrorToBuffer(error); + } + + private _addErrorToBuffer(e: any): void { + if (this._errorBuffer[e.stack]) { + this._errorBuffer[e.stack].count++; + } else { + e.count = 1; + this._errorBuffer[e.stack] = e; + } + this._tryScheduleErrorFlush(); + } + + private _tryScheduleErrorFlush(): void { + if (this._errorFlushTimeout === -1) { + this._errorFlushTimeout = setTimeout(() => this._flushErrorBuffer(), AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + } + } + + private _flushErrorBuffer(): void { + if (this._errorBuffer) { + for (let stack in this._errorBuffer) { + this.publicLog('UnhandledError', this._errorBuffer[stack]); + } + } + + this._errorBuffer = Object.create(null); + this._errorFlushTimeout = -1; + } + + private _enableGlobalErrorHandler(): void { + if (typeof Platform.globals.onerror === 'function') { + this._oldOnError = Platform.globals.onerror; + } + + let that = this; + let newHandler: any = function(message: string, filename: string, line: number, column?: number, e?: any) { + that._onUncaughtError(message, filename, line, column, e); + if (that._oldOnError) { + that._oldOnError.apply(this, arguments); + } + }; + + Platform.globals.onerror = newHandler; + } + + private _onUncaughtError(message: string, filename: string, line: number, column?: number, e?: any): void { + filename = this._cleanupInfo(filename); + message = this._cleanupInfo(message); + let data: any = { + message: message, + filename: filename, + line: line, + column: column + }; + + if (e) { + data.error = { + name: e.name, + message: e.message + }; + + if (e.stack) { + + if (Array.isArray(e.stack)) { + e.stack = e.stack.join('\n'); + } + + data.stack = this._cleanupInfo(e.stack); + } + } + + if (!data.stack) { + data.stack = data.message; + } + + this._addErrorToBuffer(data); + } + + public getTelemetryInfo(): TPromise { + return TPromise.as({ + instanceId: this._instanceId, + sessionId: this._sessionId, + machineId: this._machineId + }); + } + + public dispose(): void { + if (this._errorFlushTimeout !== -1) { + clearTimeout(this._errorFlushTimeout); + this._flushErrorBuffer(); + } + + while (this._toUnbind.length) { + this._toUnbind.pop()(); + } + this._timeKeeper.removeListener(this._timeKeeperListener); + this._timeKeeper.dispose(); + + for (let i = 0; i < this._appenders.length; i++) { + this._appenders[i].dispose(); + } + } + + public timedPublicLog(name: string, data?: any): ITimerEvent { + let topic = 'public'; + let event = this._timeKeeper.start(topic, name); + if (data) { + event.data = data; + } + return event; + } + + public publicLog(eventName: string, data?: any): void { + this._handleEvent(eventName, data); + } + + public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { + this._appenders.push(appender); + return { + dispose: () => { + let index = this._appenders.indexOf(appender); + if (index > -1) { + this._appenders.splice(index, 1); + } + } + }; + } + + protected _handleEvent(eventName: string, data?: any): void { + throw new Error('Not implemented!'); + } + + + protected _cleanupInfo(stack: string): string { + + // `file:///DANGEROUS/PATH/resources/app/Useful/Information` + let reg = /file:\/\/\/.*?\/resources\/app\//gi; + stack = stack.replace(reg, ''); + + // Any other file path that doesn't match the approved form above should be cleaned. + reg = /file:\/\/\/.*/gi; + stack = stack.replace(reg, ''); + + // "Error: ENOENT; no such file or directory" is often followed with PII, clean it + reg = /ENOENT: no such file or directory.*?\'([^\']+)\'/gi; + stack = stack.replace(reg, 'ENOENT: no such file or directory'); + + // sanitize with configured cleanup patterns + for (let pattern of this._config.cleanupPatterns) { + stack = stack.replace(pattern, ''); + } + + return stack; + } +} export class MainTelemetryService extends AbstractTelemetryService implements ITelemetryService { @@ -19,70 +257,70 @@ export class MainTelemetryService extends AbstractTelemetryService implements IT public static IDLE_START_EVENT_NAME = 'UserIdleStart'; public static IDLE_STOP_EVENT_NAME = 'UserIdleStop'; - private hardIdleMonitor: IdleMonitor; - private softIdleMonitor: IdleMonitor; - private eventCount: number; - private userIdHash: string; - private startTime: Date; - private optInFriendly: string[]; + private _hardIdleMonitor: IdleMonitor; + private _softIdleMonitor: IdleMonitor; + private _eventCount: number; + private _userIdHash: string; + private _startTime: Date; + private _optInFriendly: string[]; constructor(config?: ITelemetryServiceConfig) { super(config); - this.sessionId = this.config.sessionID || (uuid.generateUuid() + Date.now()); + this._sessionId = this._config.sessionID || (uuid.generateUuid() + Date.now()); - if (this.config.enableHardIdle) { - this.hardIdleMonitor = new IdleMonitor(); + if (this._config.enableHardIdle) { + this._hardIdleMonitor = new IdleMonitor(); } - if (this.config.enableSoftIdle) { - this.softIdleMonitor = new IdleMonitor(MainTelemetryService.SOFT_IDLE_TIME); - this.softIdleMonitor.addOneTimeActiveListener(() => this.onUserActive()); - this.softIdleMonitor.addOneTimeIdleListener(() => this.onUserIdle()); + if (this._config.enableSoftIdle) { + this._softIdleMonitor = new IdleMonitor(MainTelemetryService.SOFT_IDLE_TIME); + this._softIdleMonitor.addOneTimeActiveListener(() => this._onUserActive()); + this._softIdleMonitor.addOneTimeIdleListener(() => this._onUserIdle()); } - this.eventCount = 0; - this.startTime = new Date(); + this._eventCount = 0; + this._startTime = new Date(); //holds a cache of predefined events that can be sent regardress of user optin status - this.optInFriendly = ['optInStatus']; + this._optInFriendly = ['optInStatus']; } - private onUserIdle(): void { + private _onUserIdle(): void { this.publicLog(MainTelemetryService.IDLE_START_EVENT_NAME); - this.softIdleMonitor.addOneTimeIdleListener(() => this.onUserIdle()); + this._softIdleMonitor.addOneTimeIdleListener(() => this._onUserIdle()); } - private onUserActive(): void { + private _onUserActive(): void { this.publicLog(MainTelemetryService.IDLE_STOP_EVENT_NAME); - this.softIdleMonitor.addOneTimeActiveListener(() => this.onUserActive()); + this._softIdleMonitor.addOneTimeActiveListener(() => this._onUserActive()); } public dispose(): void { - if (this.hardIdleMonitor) { - this.hardIdleMonitor.dispose(); + if (this._hardIdleMonitor) { + this._hardIdleMonitor.dispose(); } - if (this.softIdleMonitor) { - this.softIdleMonitor.dispose(); + if (this._softIdleMonitor) { + this._softIdleMonitor.dispose(); } super.dispose(); } - protected handleEvent(eventName: string, data?: any): void { - if (this.hardIdleMonitor && this.hardIdleMonitor.getStatus() === UserStatus.Idle) { + protected _handleEvent(eventName: string, data?: any): void { + if (this._hardIdleMonitor && this._hardIdleMonitor.getStatus() === UserStatus.Idle) { return; } // don't send events when the user is optout unless the event is flaged as optin friendly - if(!this.config.userOptIn && this.optInFriendly.indexOf(eventName) === -1) { + if(!this._config.userOptIn && this._optInFriendly.indexOf(eventName) === -1) { return; } - this.eventCount++; + this._eventCount++; - data = data && cloneAndChange(data, value => typeof value === 'string' ? this.cleanupInfo(value) : void 0); + data = data && cloneAndChange(data, value => typeof value === 'string' ? this._cleanupInfo(value) : void 0); data = this.addCommonProperties(data); - for (let appender of this.appenders) { + for (let appender of this._appenders) { appender.log(eventName, data); } } @@ -91,19 +329,17 @@ export class MainTelemetryService extends AbstractTelemetryService implements IT data = data || {}; let eventDate: Date = new Date(); - data['sessionID'] = this.sessionId; + data['sessionID'] = this._sessionId; data['timestamp'] = eventDate; - data['version'] = this.config.version; - data['userId'] = this.userIdHash; - data['commitHash'] = this.config.commitHash; + data['version'] = this._config.version; + data['userId'] = this._userIdHash; + data['commitHash'] = this._config.commitHash; data['common.platform'] = Platform.Platform[Platform.platform]; - data['common.timesincesessionstart'] = (eventDate.getTime() - this.startTime.getTime()); - data['common.sequence'] = this.eventCount; - data['common.instanceId'] = this.instanceId; - data['common.machineId'] = this.machineId; + data['common.timesincesessionstart'] = (eventDate.getTime() - this._startTime.getTime()); + data['common.sequence'] = this._eventCount; + data['common.instanceId'] = this._instanceId; + data['common.machineId'] = this._machineId; return data; } - - } diff --git a/src/vs/platform/telemetry/common/abstractTelemetryService.ts b/src/vs/platform/telemetry/common/abstractTelemetryService.ts deleted file mode 100644 index 82e95a2fbfa..00000000000 --- a/src/vs/platform/telemetry/common/abstractTelemetryService.ts +++ /dev/null @@ -1,255 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ -'use strict'; - -import {TPromise} from 'vs/base/common/winjs.base'; -import {IDisposable} from 'vs/base/common/lifecycle'; -import Errors = require('vs/base/common/errors'); -import Types = require('vs/base/common/types'); -import Platform = require('vs/base/common/platform'); -import {TimeKeeper, IEventsListener, ITimerEvent} from 'vs/base/common/timer'; -import {safeStringify, withDefaults} from 'vs/base/common/objects'; -import {ITelemetryService, ITelemetryAppender, ITelemetryInfo, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; - -const DefaultTelemetryServiceConfig: ITelemetryServiceConfig = { - enableHardIdle: true, - enableSoftIdle: true, - userOptIn: true, - cleanupPatterns: [] -}; - -/** - * Base class for main process telemetry services - */ -export abstract class AbstractTelemetryService implements ITelemetryService { - public static ERROR_FLUSH_TIMEOUT: number = 5 * 1000; - - public serviceId = ITelemetryService; - - private timeKeeper: TimeKeeper; - private oldOnError: any; - private timeKeeperListener: IEventsListener; - private errorBuffer: { [stack: string]: any }; - private errorFlushTimeout: number; - - protected appenders: ITelemetryAppender[]; - protected sessionId: string; - protected instanceId: string; - protected machineId: string; - protected toUnbind: any[]; - - protected config: ITelemetryServiceConfig; - - constructor(config?: ITelemetryServiceConfig) { - this.sessionId = 'SESSION_ID_NOT_SET'; - this.timeKeeper = new TimeKeeper(); - this.toUnbind = []; - this.appenders = []; - this.timeKeeperListener = (events: ITimerEvent[]) => this.onTelemetryTimerEventStop(events); - this.timeKeeper.addListener(this.timeKeeperListener); - this.toUnbind.push(Errors.errorHandler.addListener(this.onErrorEvent.bind(this))); - - this.errorBuffer = Object.create(null); - - this.enableGlobalErrorHandler(); - - this.errorFlushTimeout = -1; - - this.config = withDefaults(config, DefaultTelemetryServiceConfig); - } - - private _safeStringify(data: any): string { - return safeStringify(data); - } - - private onTelemetryTimerEventStop(events: ITimerEvent[]): void { - for (let i = 0; i < events.length; i++) { - let event = events[i]; - let data = event.data || {}; - data.duration = event.timeTaken(); - this.publicLog(event.name, data); - } - } - - private onErrorEvent(e: any): void { - - if(!e) { - return; - } - - let error = Object.create(null); - - // unwrap nested errors from loader - if (e.detail && e.detail.stack) { - e = e.detail; - } - - // work around behavior in workerServer.ts that breaks up Error.stack - let stack = Array.isArray(e.stack) ? e.stack.join('\n') : e.stack; - let message = e.message ? e.message : this._safeStringify(e); - - // errors without a stack are not useful telemetry - if (!stack) { - return; - } - - error['message'] = this.cleanupInfo(message); - error['stack'] = this.cleanupInfo(stack); - - this.addErrortoBuffer(error); - } - - private addErrortoBuffer(e: any): void { - if (this.errorBuffer[e.stack]) { - this.errorBuffer[e.stack].count++; - } else { - e.count = 1; - this.errorBuffer[e.stack] = e; - } - this.tryScheduleErrorFlush(); - } - - private tryScheduleErrorFlush(): void { - if (this.errorFlushTimeout === -1) { - this.errorFlushTimeout = setTimeout(() => this.flushErrorBuffer(), AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); - } - } - - private flushErrorBuffer(): void { - if (this.errorBuffer) { - for (let stack in this.errorBuffer) { - this.publicLog('UnhandledError', this.errorBuffer[stack]); - } - } - - this.errorBuffer = Object.create(null); - this.errorFlushTimeout = -1; - } - - protected cleanupInfo(stack: string): string { - - // `file:///DANGEROUS/PATH/resources/app/Useful/Information` - let reg = /file:\/\/\/.*?\/resources\/app\//gi; - stack = stack.replace(reg, ''); - - // Any other file path that doesn't match the approved form above should be cleaned. - reg = /file:\/\/\/.*/gi; - stack = stack.replace(reg, ''); - - // "Error: ENOENT; no such file or directory" is often followed with PII, clean it - reg = /ENOENT: no such file or directory.*?\'([^\']+)\'/gi; - stack = stack.replace(reg, 'ENOENT: no such file or directory'); - - // sanitize with configured cleanup patterns - for (let pattern of this.config.cleanupPatterns) { - stack = stack.replace(pattern, ''); - } - - return stack; - } - - private enableGlobalErrorHandler(): void { - if (Types.isFunction(Platform.globals.onerror)) { - this.oldOnError = Platform.globals.onerror; - } - - let that = this; - let newHandler: any = function(message: string, filename: string, line: number, column?: number, e?: any) { - that.onUncaughtError(message, filename, line, column, e); - if (that.oldOnError) { - that.oldOnError.apply(this, arguments); - } - }; - - Platform.globals.onerror = newHandler; - } - - private onUncaughtError(message: string, filename: string, line: number, column?: number, e?: any): void { - filename = this.cleanupInfo(filename); - message = this.cleanupInfo(message); - let data: any = { - message: message, - filename: filename, - line: line, - column: column - }; - - if (e) { - data.error = { - name: e.name, - message: e.message - }; - - if (e.stack) { - - if (Array.isArray(e.stack)) { - e.stack = e.stack.join('\n'); - } - - data.stack = this.cleanupInfo(e.stack); - } - } - - if (!data.stack) { - data.stack = data.message; - } - - this.addErrortoBuffer(data); - } - - public getTelemetryInfo(): TPromise { - return TPromise.as({ - instanceId: this.instanceId, - sessionId: this.sessionId, - machineId: this.machineId - }); - } - - public dispose(): void { - if (this.errorFlushTimeout !== -1) { - clearTimeout(this.errorFlushTimeout); - this.flushErrorBuffer(); - } - - while (this.toUnbind.length) { - this.toUnbind.pop()(); - } - this.timeKeeper.removeListener(this.timeKeeperListener); - this.timeKeeper.dispose(); - - for (let i = 0; i < this.appenders.length; i++) { - this.appenders[i].dispose(); - } - } - - public timedPublicLog(name: string, data?: any): ITimerEvent { - let topic = 'public'; - let event = this.timeKeeper.start(topic, name); - if (data) { - event.data = data; - } - return event; - } - - public publicLog(eventName: string, data?: any): void { - this.handleEvent(eventName, data); - } - - public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { - this.appenders.push(appender); - return { - dispose: () => { - let index = this.appenders.indexOf(appender); - if (index > -1) { - this.appenders.splice(index, 1); - } - } - }; - } - - protected handleEvent(eventName: string, data?: any): void { - throw new Error('Not implemented!'); - } -} diff --git a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts index 1dce61eda6a..149fff563ff 100644 --- a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts +++ b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts @@ -78,22 +78,22 @@ export class ElectronTelemetryService extends MainTelemetryService implements IT private loadOptinSettings(): void { const config = this.configurationService.getConfiguration(TELEMETRY_SECTION_ID); - this.config.userOptIn = config ? config.enableTelemetry : this.config.userOptIn; + this._config.userOptIn = config ? config.enableTelemetry : this._config.userOptIn; this._optInStatusLoaded = true; - this.publicLog('optInStatus', {optIn: this.config.userOptIn}); + this.publicLog('optInStatus', {optIn: this._config.userOptIn}); this.flushBuffer(); - this.toUnbind.push(this.configurationService.addListener(ConfigurationServiceEventTypes.UPDATED, (e: IConfigurationServiceEvent) => { - this.config.userOptIn = e.config && e.config[TELEMETRY_SECTION_ID] ? e.config[TELEMETRY_SECTION_ID].enableTelemetry : this.config.userOptIn; + this._toUnbind.push(this.configurationService.addListener(ConfigurationServiceEventTypes.UPDATED, (e: IConfigurationServiceEvent) => { + this._config.userOptIn = e.config && e.config[TELEMETRY_SECTION_ID] ? e.config[TELEMETRY_SECTION_ID].enableTelemetry : this._config.userOptIn; })); } private setupIds(): TPromise { return TPromise.join([this.setupInstanceId(), this.setupMachineId()]).then(() => { return { - machineId: this.machineId, - instanceId: this.instanceId, - sessionId: this.sessionId + machineId: this._machineId, + instanceId: this._instanceId, + sessionId: this._sessionId }; }); } @@ -104,15 +104,15 @@ export class ElectronTelemetryService extends MainTelemetryService implements IT instanceId = uuid.generateUuid(); this.storageService.store(StorageKeys.InstanceId, instanceId); } - this.instanceId = instanceId; - return TPromise.as(this.instanceId); + this._instanceId = instanceId; + return TPromise.as(this._instanceId); } private setupMachineId(): TPromise { let machineId = this.storageService.get(StorageKeys.MachineId); if (machineId) { - this.machineId = machineId; - return TPromise.as(this.machineId); + this._machineId = machineId; + return TPromise.as(this._machineId); } else { return new TPromise((resolve, reject) => { try { @@ -126,18 +126,18 @@ export class ElectronTelemetryService extends MainTelemetryService implements IT machineId = uuid.generateUuid(); } - this.machineId = machineId; + this._machineId = machineId; this.storageService.store(StorageKeys.MachineId, machineId); - resolve(this.machineId); + resolve(this._machineId); }); } catch (err) { errors.onUnexpectedError(err); // generate a UUID machineId = uuid.generateUuid(); - this.machineId = machineId; + this._machineId = machineId; this.storageService.store(StorageKeys.MachineId, machineId); - resolve(this.machineId); + resolve(this._machineId); } }); diff --git a/src/vs/platform/telemetry/test/node/telemetryService.test.ts b/src/vs/platform/telemetry/test/node/telemetryService.test.ts index 7f533c28cdb..bce228cf93b 100644 --- a/src/vs/platform/telemetry/test/node/telemetryService.test.ts +++ b/src/vs/platform/telemetry/test/node/telemetryService.test.ts @@ -6,8 +6,7 @@ import * as assert from 'assert'; import IdleMonitor = require('vs/base/browser/idleMonitor'); -import AbstractTelemetryService = require('vs/platform/telemetry/common/abstractTelemetryService'); -import MainTelemetryService = require('vs/platform/telemetry/browser/mainTelemetryService'); +import {MainTelemetryService, AbstractTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; import TelemetryService = require('vs/platform/telemetry/common/telemetry'); import InstantiationService = require('vs/platform/instantiation/common/instantiationService'); import Errors = require('vs/base/common/errors'); @@ -86,9 +85,9 @@ class ErrorTestingSettings { suite('TelemetryService', () => { - class AppenderCountTelemetryService extends MainTelemetryService.MainTelemetryService { + class AppenderCountTelemetryService extends MainTelemetryService { getAppendersCount() { - return this.appenders.length; + return this._appenders.length; } } @@ -198,7 +197,7 @@ suite('TelemetryService', () => { }); test('Disposing', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -211,7 +210,7 @@ suite('TelemetryService', () => { // event reporting test('Simple event', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); return service.getTelemetryInfo().then(info => { @@ -230,7 +229,7 @@ suite('TelemetryService', () => { })); test('Event with data', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); return service.getTelemetryInfo().then(info => { @@ -262,7 +261,7 @@ suite('TelemetryService', () => { test('Telemetry Timer events', sinon.test(function() { Timer.ENABLE_TIMER = true; - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -295,7 +294,7 @@ suite('TelemetryService', () => { })); test('enableTelemetry on by default', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -312,7 +311,7 @@ suite('TelemetryService', () => { Errors.setUnexpectedErrorHandler(() => { }); try { - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -324,7 +323,7 @@ suite('TelemetryService', () => { } Errors.onUnexpectedError(e); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(testAppender.getEventsCount(), 1); assert.equal(testAppender.events[0].eventName, 'UnhandledError'); assert.equal(testAppender.events[0].data.message, 'This is a test.'); @@ -341,7 +340,7 @@ suite('TelemetryService', () => { // Errors.setUnexpectedErrorHandler(() => {}); // // try { - // let service = new MainTelemetryService.MainTelemetryService(); + // let service = new MainTelemetryService(); // let testAppender = new TestTelemetryAppender(); // service.addTelemetryAppender(testAppender); // @@ -352,7 +351,7 @@ suite('TelemetryService', () => { // // prevent console output from failing the test // this.stub(console, 'log'); // // allow for the promise to finish - // this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + // this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); // // assert.equal(testAppender.getEventsCount(), 1); // assert.equal(testAppender.events[0].eventName, 'UnhandledError'); @@ -367,13 +366,13 @@ suite('TelemetryService', () => { test('Handle global errors', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let testError = new Error('test'); (window.onerror)('Error Message', 'file.js', 2, 42, testError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.alwaysCalledWithExactly('Error Message', 'file.js', 2, 42, testError), true); assert.equal(errorStub.callCount, 1); @@ -392,14 +391,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII from filename', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousFilenameError: any = new Error('dangerousFilename'); dangerousFilenameError.stack = settings.stack; (window.onerror)('dangerousFilename', settings.dangerousPathWithImportantInfo + '/test.js', 2, 42, dangerousFilenameError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); assert.equal(testAppender.events[0].data.filename.indexOf(settings.dangerousPathWithImportantInfo), -1); @@ -407,7 +406,7 @@ suite('TelemetryService', () => { dangerousFilenameError = new Error('dangerousFilename'); dangerousFilenameError.stack = settings.stack; (window.onerror)('dangerousFilename', settings.dangerousPathWithImportantInfo + '/test.js', 2, 42, dangerousFilenameError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 2); assert.equal(testAppender.events[0].data.filename.indexOf(settings.dangerousPathWithImportantInfo), -1); @@ -421,14 +420,14 @@ suite('TelemetryService', () => { Errors.setUnexpectedErrorHandler(() => { }); try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousPathWithoutImportantInfoError: any = new Error(settings.dangerousPathWithoutImportantInfo); dangerousPathWithoutImportantInfoError.stack = settings.stack; Errors.onUnexpectedError(dangerousPathWithoutImportantInfoError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.filePrefix), -1); @@ -448,14 +447,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousPathWithoutImportantInfoError: any = new Error('dangerousPathWithoutImportantInfo'); dangerousPathWithoutImportantInfoError.stack = settings.stack; (window.onerror)(settings.dangerousPathWithoutImportantInfo, 'test.js', 2, 42, dangerousPathWithoutImportantInfoError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that no file information remains, esp. personal info @@ -476,7 +475,7 @@ suite('TelemetryService', () => { try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -485,7 +484,7 @@ suite('TelemetryService', () => { // Test that important information remains but personal info does not Errors.onUnexpectedError(dangerousPathWithImportantInfoError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.notEqual(testAppender.events[0].data.message.indexOf(settings.importantInfo), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); @@ -506,14 +505,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII but preserves Code file path', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousPathWithImportantInfoError: any = new Error('dangerousPathWithImportantInfo'); dangerousPathWithImportantInfoError.stack = settings.stack; (window.onerror)(settings.dangerousPathWithImportantInfo, 'test.js', 2, 42, dangerousPathWithImportantInfoError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that important information remains but personal info does not @@ -536,7 +535,7 @@ suite('TelemetryService', () => { try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -546,7 +545,7 @@ suite('TelemetryService', () => { // Test that no file information remains, but this particular // error message does (Received model events for missing model) Errors.onUnexpectedError(missingModelError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.notEqual(testAppender.events[0].data.message.indexOf(settings.missingModelPrefix), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); @@ -566,14 +565,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII but preserves Missing Model error message', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let missingModelError: any = new Error('missingModelMessage'); missingModelError.stack = settings.stack; (window.onerror)(settings.missingModelMessage, 'test.js', 2, 42, missingModelError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that no file information remains, but this particular @@ -597,7 +596,7 @@ suite('TelemetryService', () => { try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -607,7 +606,7 @@ suite('TelemetryService', () => { // Test that no file information remains, but this particular // error message does (ENOENT: no such file or directory) Errors.onUnexpectedError(noSuchFileError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.notEqual(testAppender.events[0].data.message.indexOf(settings.noSuchFilePrefix), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); @@ -631,14 +630,14 @@ suite('TelemetryService', () => { try { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService.MainTelemetryService(); + let service = new MainTelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let noSuchFileError: any = new Error('noSuchFileMessage'); noSuchFileError.stack = settings.stack; (window.onerror)(settings.noSuchFileMessage, 'test.js', 2, 42, noSuchFileError); - this.clock.tick(AbstractTelemetryService.AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that no file information remains, but this particular @@ -661,7 +660,7 @@ suite('TelemetryService', () => { test('Test hard idle does not affect sending normal events in active state', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService({ enableHardIdle: true, enableSoftIdle: false }); + let service = new MainTelemetryService({ enableHardIdle: true, enableSoftIdle: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -677,7 +676,7 @@ suite('TelemetryService', () => { test('Test hard idle stops events from being sent in idle state', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService({ enableHardIdle: true, enableSoftIdle: false }); + let service = new MainTelemetryService({ enableHardIdle: true, enableSoftIdle: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -699,7 +698,7 @@ suite('TelemetryService', () => { let idleListener: () => void = null; function MockIdleMonitor(timeout: number): void { - assert.equal(timeout, MainTelemetryService.MainTelemetryService.SOFT_IDLE_TIME); + assert.equal(timeout, MainTelemetryService.SOFT_IDLE_TIME); } MockIdleMonitor.prototype.addOneTimeActiveListener = function(callback: () => void): void { @@ -716,7 +715,7 @@ suite('TelemetryService', () => { this.stub(IdleMonitor, 'IdleMonitor', MockIdleMonitor); - let service = new MainTelemetryService.MainTelemetryService({ enableHardIdle: false, enableSoftIdle: true }); + let service = new MainTelemetryService({ enableHardIdle: false, enableSoftIdle: true }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -731,11 +730,11 @@ suite('TelemetryService', () => { //verify that two idle happened assert.equal(testAppender.getEventsCount(), 4); //first idle - assert.equal(testAppender.events[0].eventName, MainTelemetryService.MainTelemetryService.IDLE_START_EVENT_NAME); - assert.equal(testAppender.events[1].eventName, MainTelemetryService.MainTelemetryService.IDLE_STOP_EVENT_NAME); + assert.equal(testAppender.events[0].eventName, MainTelemetryService.IDLE_START_EVENT_NAME); + assert.equal(testAppender.events[1].eventName, MainTelemetryService.IDLE_STOP_EVENT_NAME); //second idle - assert.equal(testAppender.events[2].eventName, MainTelemetryService.MainTelemetryService.IDLE_START_EVENT_NAME); - assert.equal(testAppender.events[3].eventName, MainTelemetryService.MainTelemetryService.IDLE_STOP_EVENT_NAME); + assert.equal(testAppender.events[2].eventName, MainTelemetryService.IDLE_START_EVENT_NAME); + assert.equal(testAppender.events[3].eventName, MainTelemetryService.IDLE_STOP_EVENT_NAME); service.dispose(); })); @@ -743,7 +742,7 @@ suite('TelemetryService', () => { test('Telemetry Service uses provided session ID', sinon.test(function() { let testSessionId = 'test session id'; - let service = new MainTelemetryService.MainTelemetryService({ sessionID: testSessionId }); + let service = new MainTelemetryService({ sessionID: testSessionId }); return service.getTelemetryInfo().then(info => { assert.equal(info.sessionId, testSessionId); @@ -752,7 +751,7 @@ suite('TelemetryService', () => { })); test('Telemetry Service respects user opt-in settings', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService({userOptIn: false }); + let service = new MainTelemetryService({userOptIn: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -763,7 +762,7 @@ suite('TelemetryService', () => { })); test('Telemetry Service sends events when enableTelemetry is on even user optin is on', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService({userOptIn: true }); + let service = new MainTelemetryService({userOptIn: true }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -774,7 +773,7 @@ suite('TelemetryService', () => { })); test('Telemetry Service allows optin friendly events', sinon.test(function() { - let service = new MainTelemetryService.MainTelemetryService({userOptIn: false }); + let service = new MainTelemetryService({userOptIn: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); From 720baba88a3b8a72542b7a627b2ec36434d45b25 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 14:41:47 +0200 Subject: [PATCH 073/117] move ErrorTelemetry into its own type, #5219 --- src/vs/base/common/timer.ts | 20 +-- .../telemetry/browser/mainTelemetryService.ts | 148 ++---------------- .../telemetry/common/errorTelemetry.ts | 131 ++++++++++++++++ .../electronTelemetryService.ts | 6 +- 4 files changed, 158 insertions(+), 147 deletions(-) create mode 100644 src/vs/platform/telemetry/common/errorTelemetry.ts diff --git a/src/vs/base/common/timer.ts b/src/vs/base/common/timer.ts index 23c6e5c53b5..6a27ae8225c 100644 --- a/src/vs/base/common/timer.ts +++ b/src/vs/base/common/timer.ts @@ -7,6 +7,7 @@ import Platform = require('vs/base/common/platform'); import errors = require('vs/base/common/errors'); import precision = require('vs/base/common/stopwatch'); +import {IDisposable} from 'vs/base/common/lifecycle'; export var ENABLE_TIMER = false; var msWriteProfilerMark = Platform.globals['msWriteProfilerMark']; @@ -205,17 +206,18 @@ export class TimeKeeper /*extends EventEmitter.EventEmitter*/ { } } - public addListener(listener: IEventsListener): void { + public addListener(listener: IEventsListener): IDisposable { this.listeners.push(listener); - } - - public removeListener(listener: IEventsListener): void { - for (var i = 0; i < this.listeners.length; i++) { - if (this.listeners[i] === listener) { - this.listeners.splice(i, 1); - return; + return { + dispose: () => { + for (var i = 0; i < this.listeners.length; i++) { + if (this.listeners[i] === listener) { + this.listeners.splice(i, 1); + return; + } + } } - } + }; } private addEvent(event: ITimerEvent): void { diff --git a/src/vs/platform/telemetry/browser/mainTelemetryService.ts b/src/vs/platform/telemetry/browser/mainTelemetryService.ts index ac0ee80f336..dcabee2405e 100644 --- a/src/vs/platform/telemetry/browser/mainTelemetryService.ts +++ b/src/vs/platform/telemetry/browser/mainTelemetryService.ts @@ -8,13 +8,12 @@ import * as Platform from 'vs/base/common/platform'; import * as uuid from 'vs/base/common/uuid'; import {ITelemetryService, ITelemetryServiceConfig, ITelemetryAppender, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; +import ErrorTelemetry from 'vs/platform/telemetry/common/errorTelemetry'; import {IdleMonitor, UserStatus} from 'vs/base/browser/idleMonitor'; import {TPromise} from 'vs/base/common/winjs.base'; -import {IDisposable} from 'vs/base/common/lifecycle'; -import Errors = require('vs/base/common/errors'); -import {TimeKeeper, IEventsListener, ITimerEvent} from 'vs/base/common/timer'; -import {safeStringify, withDefaults, cloneAndChange} from 'vs/base/common/objects'; - +import {IDisposable, dispose} from 'vs/base/common/lifecycle'; +import {TimeKeeper, ITimerEvent} from 'vs/base/common/timer'; +import {withDefaults, cloneAndChange} from 'vs/base/common/objects'; const DefaultTelemetryServiceConfig: ITelemetryServiceConfig = { enableHardIdle: true, @@ -33,30 +32,23 @@ export abstract class AbstractTelemetryService implements ITelemetryService { public serviceId = ITelemetryService; private _timeKeeper: TimeKeeper; - private _oldOnError: any; - private _timeKeeperListener: IEventsListener; - private _errorBuffer: { [stack: string]: any }; - private _errorFlushTimeout: number; - protected _config: ITelemetryServiceConfig; protected _sessionId: string; protected _instanceId: string; protected _machineId: string; protected _appenders: ITelemetryAppender[] = []; - protected _toUnbind: any[] = []; + protected _disposables: IDisposable[] = []; constructor(config?: ITelemetryServiceConfig) { this._config = withDefaults(config, DefaultTelemetryServiceConfig); this._sessionId = 'SESSION_ID_NOT_SET'; this._timeKeeper = new TimeKeeper(); - this._timeKeeperListener = (events: ITimerEvent[]) => this._onTelemetryTimerEventStop(events); - this._timeKeeper.addListener(this._timeKeeperListener); - this._toUnbind.push(Errors.errorHandler.addListener(this._onErrorEvent.bind(this))); + this._disposables.push(this._timeKeeper); + this._disposables.push(this._timeKeeper.addListener(events => this._onTelemetryTimerEventStop(events))); - this._errorBuffer = Object.create(null); - this._enableGlobalErrorHandler(); - this._errorFlushTimeout = -1; + const errorTelemetry = new ErrorTelemetry(this, AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this._disposables.push(errorTelemetry); } private _onTelemetryTimerEventStop(events: ITimerEvent[]): void { @@ -68,110 +60,6 @@ export abstract class AbstractTelemetryService implements ITelemetryService { } } - private _onErrorEvent(e: any): void { - - if(!e) { - return; - } - - let error = Object.create(null); - - // unwrap nested errors from loader - if (e.detail && e.detail.stack) { - e = e.detail; - } - - // work around behavior in workerServer.ts that breaks up Error.stack - let stack = Array.isArray(e.stack) ? e.stack.join('\n') : e.stack; - let message = e.message ? e.message : safeStringify(e); - - // errors without a stack are not useful telemetry - if (!stack) { - return; - } - - error['message'] = this._cleanupInfo(message); - error['stack'] = this._cleanupInfo(stack); - - this._addErrorToBuffer(error); - } - - private _addErrorToBuffer(e: any): void { - if (this._errorBuffer[e.stack]) { - this._errorBuffer[e.stack].count++; - } else { - e.count = 1; - this._errorBuffer[e.stack] = e; - } - this._tryScheduleErrorFlush(); - } - - private _tryScheduleErrorFlush(): void { - if (this._errorFlushTimeout === -1) { - this._errorFlushTimeout = setTimeout(() => this._flushErrorBuffer(), AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); - } - } - - private _flushErrorBuffer(): void { - if (this._errorBuffer) { - for (let stack in this._errorBuffer) { - this.publicLog('UnhandledError', this._errorBuffer[stack]); - } - } - - this._errorBuffer = Object.create(null); - this._errorFlushTimeout = -1; - } - - private _enableGlobalErrorHandler(): void { - if (typeof Platform.globals.onerror === 'function') { - this._oldOnError = Platform.globals.onerror; - } - - let that = this; - let newHandler: any = function(message: string, filename: string, line: number, column?: number, e?: any) { - that._onUncaughtError(message, filename, line, column, e); - if (that._oldOnError) { - that._oldOnError.apply(this, arguments); - } - }; - - Platform.globals.onerror = newHandler; - } - - private _onUncaughtError(message: string, filename: string, line: number, column?: number, e?: any): void { - filename = this._cleanupInfo(filename); - message = this._cleanupInfo(message); - let data: any = { - message: message, - filename: filename, - line: line, - column: column - }; - - if (e) { - data.error = { - name: e.name, - message: e.message - }; - - if (e.stack) { - - if (Array.isArray(e.stack)) { - e.stack = e.stack.join('\n'); - } - - data.stack = this._cleanupInfo(e.stack); - } - } - - if (!data.stack) { - data.stack = data.message; - } - - this._addErrorToBuffer(data); - } - public getTelemetryInfo(): TPromise { return TPromise.as({ instanceId: this._instanceId, @@ -181,19 +69,9 @@ export abstract class AbstractTelemetryService implements ITelemetryService { } public dispose(): void { - if (this._errorFlushTimeout !== -1) { - clearTimeout(this._errorFlushTimeout); - this._flushErrorBuffer(); - } - - while (this._toUnbind.length) { - this._toUnbind.pop()(); - } - this._timeKeeper.removeListener(this._timeKeeperListener); - this._timeKeeper.dispose(); - - for (let i = 0; i < this._appenders.length; i++) { - this._appenders[i].dispose(); + this._disposables = dispose(this._disposables); + for (let appender of this._appenders) { + appender.dispose(); } } @@ -311,7 +189,7 @@ export class MainTelemetryService extends AbstractTelemetryService implements IT } // don't send events when the user is optout unless the event is flaged as optin friendly - if(!this._config.userOptIn && this._optInFriendly.indexOf(eventName) === -1) { + if (!this._config.userOptIn && this._optInFriendly.indexOf(eventName) === -1) { return; } diff --git a/src/vs/platform/telemetry/common/errorTelemetry.ts b/src/vs/platform/telemetry/common/errorTelemetry.ts new file mode 100644 index 00000000000..f1e85840c02 --- /dev/null +++ b/src/vs/platform/telemetry/common/errorTelemetry.ts @@ -0,0 +1,131 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +'use strict'; + +import {globals} from 'vs/base/common/platform'; +import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; +import {IDisposable, toDisposable, dispose} from 'vs/base/common/lifecycle'; +import Errors = require('vs/base/common/errors'); +import {safeStringify} from 'vs/base/common/objects'; + +interface ErrorEvent { + stack: string; + message?: string; + filename?: string; + line?: number; + column?: number; + error?: { name: string; message: string; }; +} + +export default class ErrorTelemetry { + + private _telemetryService: ITelemetryService; + private _flushDelay: number; + private _flushHandle = -1; + private _buffer: { [stack: string]: any } = Object.create(null); + private _disposables: IDisposable[] = []; + + constructor(telemetryService: ITelemetryService, flushDelay) { + this._telemetryService = telemetryService; + this._flushDelay = flushDelay; + + // (1) check for unexpected but handled errors + const unbind = Errors.errorHandler.addListener((err) => this._onErrorEvent(err)); + this._disposables.push(toDisposable(unbind)); + + // (2) check for uncaught global errors + let oldOnError: Function; + let that = this; + if (typeof globals.onerror === 'function') { + oldOnError = globals.onerror; + } + globals.onerror = function (message: string, filename: string, line: number, column?: number, e?: any) { + that._onUncaughtError(message, filename, line, column, e); + if (oldOnError) { + oldOnError.apply(this, arguments); + } + }; + this._disposables.push(toDisposable(function () { + if (oldOnError) { + globals.onerror = oldOnError; + } + })); + } + + dispose() { + clearTimeout(this._flushHandle); + this._flushBuffer(); + this._disposables = dispose(this._disposables); + } + + private _onErrorEvent(err: any): void { + + if (!err) { + return; + } + + // unwrap nested errors from loader + if (err.detail && err.detail.stack) { + err = err.detail; + } + + // work around behavior in workerServer.ts that breaks up Error.stack + let stack = Array.isArray(err.stack) ? err.stack.join('\n') : err.stack; + let message = err.message ? err.message : safeStringify(err); + + // errors without a stack are not useful telemetry + if (!stack) { + return; + } + + this._enqueue({ message, stack }); + } + + private _onUncaughtError(message: string, filename: string, line: number, column?: number, err?: any): void { + + let data: ErrorEvent = { + stack: message, + message, + filename, + line, + column + }; + + if (err) { + let {name, message, stack} = err; + data.error = { name, message }; + if (stack) { + data.stack = Array.isArray(err.stack) + ? err.stack = err.stack.join('\n') + : err.stack; + } + } + + this._enqueue(data); + } + + private _enqueue(e: any): void { + if (this._buffer[e.stack]) { + this._buffer[e.stack].count++; + } else { + e.count = 1; + this._buffer[e.stack] = e; + } + if (this._flushHandle === -1) { + this._flushHandle = setTimeout(() => { + this._flushBuffer(); + this._flushHandle = -1; + }, this._flushDelay); + } + } + + private _flushBuffer(): void { + for (let stack in this._buffer) { + this._telemetryService.publicLog('UnhandledError', this._buffer[stack]); + } + this._buffer = Object.create(null); + } +} diff --git a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts index 149fff563ff..f83d3b22fd3 100644 --- a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts +++ b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts @@ -14,7 +14,7 @@ import {MainTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryS import {ITelemetryService, ITelemetryInfo, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; import {IStorageService} from 'vs/platform/storage/common/storage'; import {IConfigurationRegistry, Extensions} from 'vs/platform/configuration/common/configurationRegistry'; -import {IConfigurationService, IConfigurationServiceEvent, ConfigurationServiceEventTypes} from 'vs/platform/configuration/common/configuration'; +import {IConfigurationService} from 'vs/platform/configuration/common/configuration'; import {Registry} from 'vs/platform/platform'; @@ -83,9 +83,9 @@ export class ElectronTelemetryService extends MainTelemetryService implements IT this.publicLog('optInStatus', {optIn: this._config.userOptIn}); this.flushBuffer(); - this._toUnbind.push(this.configurationService.addListener(ConfigurationServiceEventTypes.UPDATED, (e: IConfigurationServiceEvent) => { + this.configurationService.onDidUpdateConfiguration(e => { this._config.userOptIn = e.config && e.config[TELEMETRY_SECTION_ID] ? e.config[TELEMETRY_SECTION_ID].enableTelemetry : this._config.userOptIn; - })); + }, undefined, this._disposables); } private setupIds(): TPromise { From aef47c72fd1436b7d031019d123edef14d884dc7 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 15:44:25 +0200 Subject: [PATCH 074/117] remove AbstractTelemetryService and MainTelemetryService and only have TelemetryService, #5219 --- .../browser/standalone/standaloneServices.ts | 4 +- ...elemetryService.ts => telemetryService.ts} | 233 ++++++++---------- .../electronTelemetryService.ts | 173 +++++-------- .../test/node/telemetryService.test.ts | 96 ++++---- .../test/browser/fileEditorInput.test.ts | 8 +- .../workbench/test/browser/services.test.ts | 6 +- .../test/browser/servicesTestUtils.ts | 6 +- 7 files changed, 222 insertions(+), 304 deletions(-) rename src/vs/platform/telemetry/browser/{mainTelemetryService.ts => telemetryService.ts} (64%) diff --git a/src/vs/editor/browser/standalone/standaloneServices.ts b/src/vs/editor/browser/standalone/standaloneServices.ts index c253ea3a99c..9f97ba28581 100644 --- a/src/vs/editor/browser/standalone/standaloneServices.ts +++ b/src/vs/editor/browser/standalone/standaloneServices.ts @@ -26,7 +26,7 @@ import {IProgressService} from 'vs/platform/progress/common/progress'; import {IRequestService} from 'vs/platform/request/common/request'; import {ISearchService} from 'vs/platform/search/common/search'; import {IStorageService} from 'vs/platform/storage/common/storage'; -import {MainTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; +import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; import {ITelemetryService, NullTelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {MainThreadService} from 'vs/platform/thread/common/mainThreadService'; import {IThreadService} from 'vs/platform/thread/common/thread'; @@ -165,7 +165,7 @@ export function getOrCreateStaticServices(services?: IEditorOverrideServices): I let config = contextService.getConfiguration(); let enableTelemetry = config && config.env ? !!config.env.enableTelemetry: false; telemetryService = enableTelemetry - ? new MainTelemetryService() + ? new TelemetryService() : NullTelemetryService; } diff --git a/src/vs/platform/telemetry/browser/mainTelemetryService.ts b/src/vs/platform/telemetry/browser/telemetryService.ts similarity index 64% rename from src/vs/platform/telemetry/browser/mainTelemetryService.ts rename to src/vs/platform/telemetry/browser/telemetryService.ts index dcabee2405e..b9a07f7d642 100644 --- a/src/vs/platform/telemetry/browser/mainTelemetryService.ts +++ b/src/vs/platform/telemetry/browser/telemetryService.ts @@ -15,40 +15,72 @@ import {IDisposable, dispose} from 'vs/base/common/lifecycle'; import {TimeKeeper, ITimerEvent} from 'vs/base/common/timer'; import {withDefaults, cloneAndChange} from 'vs/base/common/objects'; -const DefaultTelemetryServiceConfig: ITelemetryServiceConfig = { - enableHardIdle: true, - enableSoftIdle: true, - userOptIn: true, - cleanupPatterns: [] -}; +export class TelemetryService implements ITelemetryService { -/** - * Base class for main process telemetry services - */ -export abstract class AbstractTelemetryService implements ITelemetryService { + // how long of inactivity before a user is considered 'inactive' - 2 minutes + public static SOFT_IDLE_TIME = 2 * 60 * 1000; + public static IDLE_START_EVENT_NAME = 'UserIdleStart'; + public static IDLE_STOP_EVENT_NAME = 'UserIdleStop'; public static ERROR_FLUSH_TIMEOUT: number = 5 * 1000; public serviceId = ITelemetryService; - private _timeKeeper: TimeKeeper; - protected _config: ITelemetryServiceConfig; - protected _sessionId: string; - protected _instanceId: string; - protected _machineId: string; + protected _telemetryInfo: ITelemetryInfo; + protected _configuration: ITelemetryServiceConfig; protected _appenders: ITelemetryAppender[] = []; protected _disposables: IDisposable[] = []; - constructor(config?: ITelemetryServiceConfig) { - this._config = withDefaults(config, DefaultTelemetryServiceConfig); - this._sessionId = 'SESSION_ID_NOT_SET'; - this._timeKeeper = new TimeKeeper(); + private _timeKeeper: TimeKeeper; + private _hardIdleMonitor: IdleMonitor; + private _softIdleMonitor: IdleMonitor; + private _eventCount = 0; + private _startTime = new Date(); + private _optInFriendly = ['optInStatus']; //holds a cache of predefined events that can be sent regardress of user optin status + private _userIdHash: string; + constructor(config?: ITelemetryServiceConfig) { + this._configuration = withDefaults(config, { + cleanupPatterns: [], + sessionID: uuid.generateUuid() + Date.now(), + enableHardIdle: true, + enableSoftIdle: true, + userOptIn: true, + }); + + this._telemetryInfo = { + sessionId: this._configuration.sessionID, + instanceId: undefined, + machineId: undefined + }; + + this._timeKeeper = new TimeKeeper(); this._disposables.push(this._timeKeeper); this._disposables.push(this._timeKeeper.addListener(events => this._onTelemetryTimerEventStop(events))); - const errorTelemetry = new ErrorTelemetry(this, AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + const errorTelemetry = new ErrorTelemetry(this, TelemetryService.ERROR_FLUSH_TIMEOUT); this._disposables.push(errorTelemetry); + + if (this._configuration.enableHardIdle) { + this._hardIdleMonitor = new IdleMonitor(); + this._disposables.push(this._hardIdleMonitor); + } + if (this._configuration.enableSoftIdle) { + this._softIdleMonitor = new IdleMonitor(TelemetryService.SOFT_IDLE_TIME); + this._softIdleMonitor.addOneTimeActiveListener(() => this._onUserActive()); + this._softIdleMonitor.addOneTimeIdleListener(() => this._onUserIdle()); + this._disposables.push(this._softIdleMonitor); + } + } + + private _onUserIdle(): void { + this.publicLog(TelemetryService.IDLE_START_EVENT_NAME); + this._softIdleMonitor.addOneTimeIdleListener(() => this._onUserIdle()); + } + + private _onUserActive(): void { + this.publicLog(TelemetryService.IDLE_STOP_EVENT_NAME); + this._softIdleMonitor.addOneTimeActiveListener(() => this._onUserActive()); } private _onTelemetryTimerEventStop(events: ITimerEvent[]): void { @@ -61,11 +93,7 @@ export abstract class AbstractTelemetryService implements ITelemetryService { } public getTelemetryInfo(): TPromise { - return TPromise.as({ - instanceId: this._instanceId, - sessionId: this._sessionId, - machineId: this._machineId - }); + return TPromise.as(this._telemetryInfo); } public dispose(): void { @@ -88,23 +116,47 @@ export abstract class AbstractTelemetryService implements ITelemetryService { this._handleEvent(eventName, data); } - public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { - this._appenders.push(appender); - return { - dispose: () => { - let index = this._appenders.indexOf(appender); - if (index > -1) { - this._appenders.splice(index, 1); - } + private _handleEvent(eventName: string, data?: any): void { + if (this._hardIdleMonitor && this._hardIdleMonitor.getStatus() === UserStatus.Idle) { + return; + } + + // don't send events when the user is optout unless the event is flaged as optin friendly + if (!this._configuration.userOptIn && this._optInFriendly.indexOf(eventName) === -1) { + return; + } + + this._eventCount++; + + if (!data) { + data = Object.create(null); + } + + // (first) add common properties + let eventDate: Date = new Date(); + data['sessionID'] = this._telemetryInfo.sessionId; + data['timestamp'] = eventDate; + data['version'] = this._configuration.version; + data['userId'] = this._userIdHash; + data['commitHash'] = this._configuration.commitHash; + data['common.platform'] = Platform.Platform[Platform.platform]; + data['common.timesincesessionstart'] = (eventDate.getTime() - this._startTime.getTime()); + data['common.sequence'] = this._eventCount; + data['common.instanceId'] = this._telemetryInfo.instanceId; + data['common.machineId'] = this._telemetryInfo.machineId; + + // (last) remove all PII from data + data = cloneAndChange(data, value => { + if (typeof value === 'string') { + return this._cleanupInfo(value); } - }; - } + }); - protected _handleEvent(eventName: string, data?: any): void { - throw new Error('Not implemented!'); + for (let appender of this._appenders) { + appender.log(eventName, data); + } } - protected _cleanupInfo(stack: string): string { // `file:///DANGEROUS/PATH/resources/app/Useful/Information` @@ -120,104 +172,23 @@ export abstract class AbstractTelemetryService implements ITelemetryService { stack = stack.replace(reg, 'ENOENT: no such file or directory'); // sanitize with configured cleanup patterns - for (let pattern of this._config.cleanupPatterns) { + for (let pattern of this._configuration.cleanupPatterns) { stack = stack.replace(pattern, ''); } return stack; } -} - -export class MainTelemetryService extends AbstractTelemetryService implements ITelemetryService { - // how long of inactivity before a user is considered 'inactive' - 2 minutes - public static SOFT_IDLE_TIME = 2 * 60 * 1000; - public static IDLE_START_EVENT_NAME = 'UserIdleStart'; - public static IDLE_STOP_EVENT_NAME = 'UserIdleStop'; - - private _hardIdleMonitor: IdleMonitor; - private _softIdleMonitor: IdleMonitor; - private _eventCount: number; - private _userIdHash: string; - private _startTime: Date; - private _optInFriendly: string[]; - - constructor(config?: ITelemetryServiceConfig) { - super(config); - - this._sessionId = this._config.sessionID || (uuid.generateUuid() + Date.now()); - - if (this._config.enableHardIdle) { - this._hardIdleMonitor = new IdleMonitor(); - } - if (this._config.enableSoftIdle) { - this._softIdleMonitor = new IdleMonitor(MainTelemetryService.SOFT_IDLE_TIME); - this._softIdleMonitor.addOneTimeActiveListener(() => this._onUserActive()); - this._softIdleMonitor.addOneTimeIdleListener(() => this._onUserIdle()); - } - - this._eventCount = 0; - this._startTime = new Date(); - - //holds a cache of predefined events that can be sent regardress of user optin status - this._optInFriendly = ['optInStatus']; - } - - private _onUserIdle(): void { - this.publicLog(MainTelemetryService.IDLE_START_EVENT_NAME); - this._softIdleMonitor.addOneTimeIdleListener(() => this._onUserIdle()); - } - - private _onUserActive(): void { - this.publicLog(MainTelemetryService.IDLE_STOP_EVENT_NAME); - this._softIdleMonitor.addOneTimeActiveListener(() => this._onUserActive()); - } - - public dispose(): void { - if (this._hardIdleMonitor) { - this._hardIdleMonitor.dispose(); - } - if (this._softIdleMonitor) { - this._softIdleMonitor.dispose(); - } - super.dispose(); - } - - protected _handleEvent(eventName: string, data?: any): void { - if (this._hardIdleMonitor && this._hardIdleMonitor.getStatus() === UserStatus.Idle) { - return; - } - - // don't send events when the user is optout unless the event is flaged as optin friendly - if (!this._config.userOptIn && this._optInFriendly.indexOf(eventName) === -1) { - return; - } - - this._eventCount++; - - data = data && cloneAndChange(data, value => typeof value === 'string' ? this._cleanupInfo(value) : void 0); - data = this.addCommonProperties(data); - - for (let appender of this._appenders) { - appender.log(eventName, data); - } - } - - protected addCommonProperties(data?: any): void { - data = data || {}; - - let eventDate: Date = new Date(); - data['sessionID'] = this._sessionId; - data['timestamp'] = eventDate; - data['version'] = this._config.version; - data['userId'] = this._userIdHash; - data['commitHash'] = this._config.commitHash; - - data['common.platform'] = Platform.Platform[Platform.platform]; - data['common.timesincesessionstart'] = (eventDate.getTime() - this._startTime.getTime()); - data['common.sequence'] = this._eventCount; - data['common.instanceId'] = this._instanceId; - data['common.machineId'] = this._machineId; - return data; + public addTelemetryAppender(appender: ITelemetryAppender): IDisposable { + this._appenders.push(appender); + return { + dispose: () => { + let index = this._appenders.indexOf(appender); + if (index > -1) { + this._appenders.splice(index, 1); + } + } + }; } } + diff --git a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts index f83d3b22fd3..6f4c507c61b 100644 --- a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts +++ b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts @@ -10,143 +10,90 @@ import { TPromise } from 'vs/base/common/winjs.base'; import * as nls from 'vs/nls'; import * as errors from 'vs/base/common/errors'; import * as uuid from 'vs/base/common/uuid'; -import {MainTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; +import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; import {ITelemetryService, ITelemetryInfo, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; import {IStorageService} from 'vs/platform/storage/common/storage'; import {IConfigurationRegistry, Extensions} from 'vs/platform/configuration/common/configurationRegistry'; import {IConfigurationService} from 'vs/platform/configuration/common/configuration'; import {Registry} from 'vs/platform/platform'; - const TELEMETRY_SECTION_ID = 'telemetry'; -class StorageKeys { - public static MachineId: string = 'telemetry.machineId'; - public static InstanceId: string = 'telemetry.instanceId'; +namespace StorageKeys { + export const MachineId = 'telemetry.machineId'; + export const InstanceId = 'telemetry.instanceId'; } -interface ITelemetryEvent { - eventName: string; - data?: any; -} +export class ElectronTelemetryService extends TelemetryService implements ITelemetryService { -export class ElectronTelemetryService extends MainTelemetryService implements ITelemetryService { + private _telemetryInfoPromise: TPromise; - private static MAX_BUFFER_SIZE = 100; + constructor( + @IConfigurationService private _configurationService: IConfigurationService, + @IStorageService private _storageService: IStorageService, + configuration?: ITelemetryServiceConfig + ) { + super(configuration); - private _setupIds: TPromise; - private _buffer: ITelemetryEvent[]; - private _optInStatusLoaded: boolean; - - constructor(@IConfigurationService private configurationService: IConfigurationService, @IStorageService private storageService: IStorageService, config?: ITelemetryServiceConfig) { - super(config); - - this._buffer = []; - this._optInStatusLoaded = false; - - this.loadOptinSettings(); - this._setupIds = this.setupIds(); + this._telemetryInfoPromise = this._setupTelemetryInfo(); + this._updateUserOptIn(); + this._configurationService.onDidUpdateConfiguration(this._updateUserOptIn, this, this._disposables); + this.publicLog('optInStatus', {optIn: this._configuration.userOptIn}); + } + + private _updateUserOptIn():void { + const config = this._configurationService.getConfiguration(TELEMETRY_SECTION_ID); + this._configuration.userOptIn = config ? config.enableTelemetry : this._configuration.userOptIn; } - /** - * override the base getTelemetryInfo to make sure this information is not retrieved before it's ready - */ public getTelemetryInfo(): TPromise { - return this._setupIds; + return this._telemetryInfoPromise; } - /** - * override the base publicLog to prevent reporting any events before the optIn status is read from configuration - */ - public publicLog(eventName:string, data?: any): void { - if (this._optInStatusLoaded) { - super.publicLog(eventName, data); - } else { - // in case loading configuration is delayed, make sure the buffer does not grow beyond MAX_BUFFER_SIZE - if (this._buffer.length > ElectronTelemetryService.MAX_BUFFER_SIZE) { - this._buffer = []; + + private _setupTelemetryInfo(): TPromise { + + let instanceId: string, machineId: string; + + return new TPromise(resolve => { + // (1) instance identifier (from storage or fresh) + instanceId = this._storageService.get(StorageKeys.InstanceId) || uuid.generateUuid(); + this._storageService.store(StorageKeys.InstanceId, instanceId); + + // (2) machine identifier (from stroage or fresh) + machineId = this._storageService.get(StorageKeys.MachineId); + if (machineId) { + return resolve(this); } - this._buffer.push({eventName: eventName, data: data}); - } - } - private flushBuffer(): void { - let event: ITelemetryEvent = null; - while(event = this._buffer.pop()) { - super.publicLog(event.eventName, event.data); - } - } + // add a unique machine id as a hash of the macAddress + try { + getmac.getMac((error, macAddress) => { + if (!error) { + // crypt machine id + machineId = crypto.createHash('sha256').update(macAddress, 'utf8').digest('hex'); + } else { + machineId = uuid.generateUuid(); // fallback, generate a UUID + } + this._telemetryInfo.machineId = machineId; + this._storageService.store(StorageKeys.MachineId, machineId); + resolve(this); + }); + } catch (err) { + errors.onUnexpectedError(err); + machineId = uuid.generateUuid(); // fallback, generate a UUID + this._storageService.store(StorageKeys.MachineId, machineId); + resolve(this); + } - private loadOptinSettings(): void { - const config = this.configurationService.getConfiguration(TELEMETRY_SECTION_ID); - this._config.userOptIn = config ? config.enableTelemetry : this._config.userOptIn; - this._optInStatusLoaded = true; - this.publicLog('optInStatus', {optIn: this._config.userOptIn}); - this.flushBuffer(); - - this.configurationService.onDidUpdateConfiguration(e => { - this._config.userOptIn = e.config && e.config[TELEMETRY_SECTION_ID] ? e.config[TELEMETRY_SECTION_ID].enableTelemetry : this._config.userOptIn; - }, undefined, this._disposables); - } - - private setupIds(): TPromise { - return TPromise.join([this.setupInstanceId(), this.setupMachineId()]).then(() => { - return { - machineId: this._machineId, - instanceId: this._instanceId, - sessionId: this._sessionId - }; + }).then(() => { + this._telemetryInfo.instanceId = instanceId; + this._telemetryInfo.machineId = machineId; + return this._telemetryInfo; }); } - - private setupInstanceId(): TPromise { - let instanceId = this.storageService.get(StorageKeys.InstanceId); - if (!instanceId) { - instanceId = uuid.generateUuid(); - this.storageService.store(StorageKeys.InstanceId, instanceId); - } - this._instanceId = instanceId; - return TPromise.as(this._instanceId); - } - - private setupMachineId(): TPromise { - let machineId = this.storageService.get(StorageKeys.MachineId); - if (machineId) { - this._machineId = machineId; - return TPromise.as(this._machineId); - } else { - return new TPromise((resolve, reject) => { - try { - // add a unique machine id as a hash of the macAddress - getmac.getMac((error, macAddress) => { - if (!error) { - // crypt machine id - machineId = crypto.createHash('sha256').update(macAddress, 'utf8').digest('hex'); - } else { - // generate a UUID - machineId = uuid.generateUuid(); - } - - this._machineId = machineId; - this.storageService.store(StorageKeys.MachineId, machineId); - resolve(this._machineId); - }); - } catch (err) { - errors.onUnexpectedError(err); - - // generate a UUID - machineId = uuid.generateUuid(); - this._machineId = machineId; - this.storageService.store(StorageKeys.MachineId, machineId); - resolve(this._machineId); - } - }); - - } - } } -const configurationRegistry = Registry.as(Extensions.Configuration); -configurationRegistry.registerConfiguration({ +Registry.as(Extensions.Configuration).registerConfiguration({ 'id': TELEMETRY_SECTION_ID, 'order': 20, 'type': 'object', diff --git a/src/vs/platform/telemetry/test/node/telemetryService.test.ts b/src/vs/platform/telemetry/test/node/telemetryService.test.ts index bce228cf93b..e5dc727f200 100644 --- a/src/vs/platform/telemetry/test/node/telemetryService.test.ts +++ b/src/vs/platform/telemetry/test/node/telemetryService.test.ts @@ -6,8 +6,8 @@ import * as assert from 'assert'; import IdleMonitor = require('vs/base/browser/idleMonitor'); -import {MainTelemetryService, AbstractTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; -import TelemetryService = require('vs/platform/telemetry/common/telemetry'); +import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; +import Telemetry = require('vs/platform/telemetry/common/telemetry'); import InstantiationService = require('vs/platform/instantiation/common/instantiationService'); import Errors = require('vs/base/common/errors'); import Timer = require('vs/base/common/timer'); @@ -15,7 +15,7 @@ import * as sinon from 'sinon'; const optInStatusEventName: string = 'optInStatus'; -class TestTelemetryAppender implements TelemetryService.ITelemetryAppender { +class TestTelemetryAppender implements Telemetry.ITelemetryAppender { public events: any[]; public isDisposed: boolean; @@ -85,7 +85,7 @@ class ErrorTestingSettings { suite('TelemetryService', () => { - class AppenderCountTelemetryService extends MainTelemetryService { + class AppenderCountTelemetryService extends TelemetryService { getAppendersCount() { return this._appenders.length; } @@ -175,11 +175,11 @@ suite('TelemetryService', () => { test('TelemetryAppendersRegistry, activate', function() { - let registry = new TelemetryService.TelemetryAppendersRegistry(); + let registry = new Telemetry.TelemetryAppendersRegistry(); registry.registerTelemetryAppenderDescriptor(TestTelemetryAppender); let callCount = 0; - let telemetryService: TelemetryService.ITelemetryService = { + let telemetryService: Telemetry.ITelemetryService = { addTelemetryAppender(appender) { assert.ok(appender); callCount += 1; @@ -187,7 +187,7 @@ suite('TelemetryService', () => { }; let instantiationService = InstantiationService.createInstantiationService(); - instantiationService.addSingleton(TelemetryService.ITelemetryService, telemetryService); + instantiationService.addSingleton(Telemetry.ITelemetryService, telemetryService); registry.activate(instantiationService); assert.equal(callCount, 1); @@ -197,7 +197,7 @@ suite('TelemetryService', () => { }); test('Disposing', sinon.test(function() { - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -210,7 +210,7 @@ suite('TelemetryService', () => { // event reporting test('Simple event', sinon.test(function() { - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); return service.getTelemetryInfo().then(info => { @@ -229,7 +229,7 @@ suite('TelemetryService', () => { })); test('Event with data', sinon.test(function() { - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); return service.getTelemetryInfo().then(info => { @@ -261,7 +261,7 @@ suite('TelemetryService', () => { test('Telemetry Timer events', sinon.test(function() { Timer.ENABLE_TIMER = true; - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -294,7 +294,7 @@ suite('TelemetryService', () => { })); test('enableTelemetry on by default', sinon.test(function() { - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -311,7 +311,7 @@ suite('TelemetryService', () => { Errors.setUnexpectedErrorHandler(() => { }); try { - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -323,7 +323,7 @@ suite('TelemetryService', () => { } Errors.onUnexpectedError(e); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(testAppender.getEventsCount(), 1); assert.equal(testAppender.events[0].eventName, 'UnhandledError'); assert.equal(testAppender.events[0].data.message, 'This is a test.'); @@ -351,7 +351,7 @@ suite('TelemetryService', () => { // // prevent console output from failing the test // this.stub(console, 'log'); // // allow for the promise to finish - // this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + // this.clock.tick(MainTelemetryService.ERROR_FLUSH_TIMEOUT); // // assert.equal(testAppender.getEventsCount(), 1); // assert.equal(testAppender.events[0].eventName, 'UnhandledError'); @@ -366,13 +366,13 @@ suite('TelemetryService', () => { test('Handle global errors', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let testError = new Error('test'); (window.onerror)('Error Message', 'file.js', 2, 42, testError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.alwaysCalledWithExactly('Error Message', 'file.js', 2, 42, testError), true); assert.equal(errorStub.callCount, 1); @@ -391,14 +391,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII from filename', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousFilenameError: any = new Error('dangerousFilename'); dangerousFilenameError.stack = settings.stack; (window.onerror)('dangerousFilename', settings.dangerousPathWithImportantInfo + '/test.js', 2, 42, dangerousFilenameError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); assert.equal(testAppender.events[0].data.filename.indexOf(settings.dangerousPathWithImportantInfo), -1); @@ -406,7 +406,7 @@ suite('TelemetryService', () => { dangerousFilenameError = new Error('dangerousFilename'); dangerousFilenameError.stack = settings.stack; (window.onerror)('dangerousFilename', settings.dangerousPathWithImportantInfo + '/test.js', 2, 42, dangerousFilenameError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 2); assert.equal(testAppender.events[0].data.filename.indexOf(settings.dangerousPathWithImportantInfo), -1); @@ -420,14 +420,14 @@ suite('TelemetryService', () => { Errors.setUnexpectedErrorHandler(() => { }); try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousPathWithoutImportantInfoError: any = new Error(settings.dangerousPathWithoutImportantInfo); dangerousPathWithoutImportantInfoError.stack = settings.stack; Errors.onUnexpectedError(dangerousPathWithoutImportantInfoError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.filePrefix), -1); @@ -447,14 +447,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousPathWithoutImportantInfoError: any = new Error('dangerousPathWithoutImportantInfo'); dangerousPathWithoutImportantInfoError.stack = settings.stack; (window.onerror)(settings.dangerousPathWithoutImportantInfo, 'test.js', 2, 42, dangerousPathWithoutImportantInfoError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that no file information remains, esp. personal info @@ -475,7 +475,7 @@ suite('TelemetryService', () => { try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -484,7 +484,7 @@ suite('TelemetryService', () => { // Test that important information remains but personal info does not Errors.onUnexpectedError(dangerousPathWithImportantInfoError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.notEqual(testAppender.events[0].data.message.indexOf(settings.importantInfo), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); @@ -505,14 +505,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII but preserves Code file path', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let dangerousPathWithImportantInfoError: any = new Error('dangerousPathWithImportantInfo'); dangerousPathWithImportantInfoError.stack = settings.stack; (window.onerror)(settings.dangerousPathWithImportantInfo, 'test.js', 2, 42, dangerousPathWithImportantInfoError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that important information remains but personal info does not @@ -535,7 +535,7 @@ suite('TelemetryService', () => { try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -545,7 +545,7 @@ suite('TelemetryService', () => { // Test that no file information remains, but this particular // error message does (Received model events for missing model) Errors.onUnexpectedError(missingModelError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.notEqual(testAppender.events[0].data.message.indexOf(settings.missingModelPrefix), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); @@ -565,14 +565,14 @@ suite('TelemetryService', () => { test('Uncaught Error Telemetry removes PII but preserves Missing Model error message', sinon.test(function() { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let missingModelError: any = new Error('missingModelMessage'); missingModelError.stack = settings.stack; (window.onerror)(settings.missingModelMessage, 'test.js', 2, 42, missingModelError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that no file information remains, but this particular @@ -596,7 +596,7 @@ suite('TelemetryService', () => { try { let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -606,7 +606,7 @@ suite('TelemetryService', () => { // Test that no file information remains, but this particular // error message does (ENOENT: no such file or directory) Errors.onUnexpectedError(noSuchFileError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.notEqual(testAppender.events[0].data.message.indexOf(settings.noSuchFilePrefix), -1); assert.equal(testAppender.events[0].data.message.indexOf(settings.personalInfo), -1); @@ -630,14 +630,14 @@ suite('TelemetryService', () => { try { let errorStub = this.stub(window, 'onerror'); let settings = new ErrorTestingSettings(); - let service = new MainTelemetryService(); + let service = new TelemetryService(); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); let noSuchFileError: any = new Error('noSuchFileMessage'); noSuchFileError.stack = settings.stack; (window.onerror)(settings.noSuchFileMessage, 'test.js', 2, 42, noSuchFileError); - this.clock.tick(AbstractTelemetryService.ERROR_FLUSH_TIMEOUT); + this.clock.tick(TelemetryService.ERROR_FLUSH_TIMEOUT); assert.equal(errorStub.callCount, 1); // Test that no file information remains, but this particular @@ -660,7 +660,7 @@ suite('TelemetryService', () => { test('Test hard idle does not affect sending normal events in active state', sinon.test(function() { - let service = new MainTelemetryService({ enableHardIdle: true, enableSoftIdle: false }); + let service = new TelemetryService({ enableHardIdle: true, enableSoftIdle: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -676,7 +676,7 @@ suite('TelemetryService', () => { test('Test hard idle stops events from being sent in idle state', sinon.test(function() { - let service = new MainTelemetryService({ enableHardIdle: true, enableSoftIdle: false }); + let service = new TelemetryService({ enableHardIdle: true, enableSoftIdle: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -698,7 +698,7 @@ suite('TelemetryService', () => { let idleListener: () => void = null; function MockIdleMonitor(timeout: number): void { - assert.equal(timeout, MainTelemetryService.SOFT_IDLE_TIME); + assert.equal(timeout, TelemetryService.SOFT_IDLE_TIME); } MockIdleMonitor.prototype.addOneTimeActiveListener = function(callback: () => void): void { @@ -715,7 +715,7 @@ suite('TelemetryService', () => { this.stub(IdleMonitor, 'IdleMonitor', MockIdleMonitor); - let service = new MainTelemetryService({ enableHardIdle: false, enableSoftIdle: true }); + let service = new TelemetryService({ enableHardIdle: false, enableSoftIdle: true }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -730,11 +730,11 @@ suite('TelemetryService', () => { //verify that two idle happened assert.equal(testAppender.getEventsCount(), 4); //first idle - assert.equal(testAppender.events[0].eventName, MainTelemetryService.IDLE_START_EVENT_NAME); - assert.equal(testAppender.events[1].eventName, MainTelemetryService.IDLE_STOP_EVENT_NAME); + assert.equal(testAppender.events[0].eventName, TelemetryService.IDLE_START_EVENT_NAME); + assert.equal(testAppender.events[1].eventName, TelemetryService.IDLE_STOP_EVENT_NAME); //second idle - assert.equal(testAppender.events[2].eventName, MainTelemetryService.IDLE_START_EVENT_NAME); - assert.equal(testAppender.events[3].eventName, MainTelemetryService.IDLE_STOP_EVENT_NAME); + assert.equal(testAppender.events[2].eventName, TelemetryService.IDLE_START_EVENT_NAME); + assert.equal(testAppender.events[3].eventName, TelemetryService.IDLE_STOP_EVENT_NAME); service.dispose(); })); @@ -742,7 +742,7 @@ suite('TelemetryService', () => { test('Telemetry Service uses provided session ID', sinon.test(function() { let testSessionId = 'test session id'; - let service = new MainTelemetryService({ sessionID: testSessionId }); + let service = new TelemetryService({ sessionID: testSessionId }); return service.getTelemetryInfo().then(info => { assert.equal(info.sessionId, testSessionId); @@ -751,7 +751,7 @@ suite('TelemetryService', () => { })); test('Telemetry Service respects user opt-in settings', sinon.test(function() { - let service = new MainTelemetryService({userOptIn: false }); + let service = new TelemetryService({userOptIn: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -762,7 +762,7 @@ suite('TelemetryService', () => { })); test('Telemetry Service sends events when enableTelemetry is on even user optin is on', sinon.test(function() { - let service = new MainTelemetryService({userOptIn: true }); + let service = new TelemetryService({userOptIn: true }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); @@ -773,7 +773,7 @@ suite('TelemetryService', () => { })); test('Telemetry Service allows optin friendly events', sinon.test(function() { - let service = new MainTelemetryService({userOptIn: false }); + let service = new TelemetryService({userOptIn: false }); let testAppender = new TestTelemetryAppender(); service.addTelemetryAppender(testAppender); diff --git a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts index 9527af4dd07..56b3807ce71 100644 --- a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts +++ b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts @@ -11,7 +11,7 @@ import {join} from 'vs/base/common/paths'; import {FileEditorInput} from 'vs/workbench/parts/files/browser/editors/fileEditorInput'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {TextFileService} from 'vs/workbench/parts/files/browser/textFileServices'; -import {MainTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; +import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; import {FileTracker} from 'vs/workbench/parts/files/browser/fileTracker'; import {TestFileService, TestLifecycleService, TestEditorService, TestPartService, TestConfigurationService, TestEventService, TestContextService, TestStorageService} from 'vs/workbench/test/browser/servicesTestUtils'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; @@ -25,7 +25,7 @@ suite('Files - FileEditorInput', () => { test('FileEditorInput', function (done) { let editorService = new TestEditorService(function () { }); let eventService = new TestEventService(); - let telemetryService = new MainTelemetryService(); + let telemetryService = new TelemetryService(); let contextService = new TestContextService(); let instantiationService = createInstantiationService({ @@ -114,7 +114,7 @@ suite('Files - FileEditorInput', () => { test('FileTracker - dispose()', function (done) { let editorService = new TestEditorService(function () { }); - let telemetryService = new MainTelemetryService(); + let telemetryService = new TelemetryService(); let contextService = new TestContextService(); let eventService = new TestEventService(); @@ -158,7 +158,7 @@ suite('Files - FileEditorInput', () => { test('FileEditorInput - dispose() also works for folders', function (done) { let editorService = new TestEditorService(function () { }); - let telemetryService = new MainTelemetryService(); + let telemetryService = new TelemetryService(); let contextService = new TestContextService(); let eventService = new TestEventService(); diff --git a/src/vs/workbench/test/browser/services.test.ts b/src/vs/workbench/test/browser/services.test.ts index 46695c88277..0fd3e67aa33 100644 --- a/src/vs/workbench/test/browser/services.test.ts +++ b/src/vs/workbench/test/browser/services.test.ts @@ -20,7 +20,7 @@ import {TextFileService} from 'vs/workbench/parts/files/browser/textFileServices import {TestEventService, TestLifecycleService, TestPartService, TestStorageService, TestConfigurationService, TestRequestService, TestContextService, TestWorkspace, TestEditorService, MockRequestService} from 'vs/workbench/test/browser/servicesTestUtils'; import {Viewlet} from 'vs/workbench/browser/viewlet'; import {EventType} from 'vs/workbench/common/events'; -import {MainTelemetryService} from 'vs/platform/telemetry/browser/mainTelemetryService'; +import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; import {UntitledEditorService} from 'vs/workbench/services/untitled/common/untitledEditorService'; import {WorkbenchProgressService, ScopedService} from 'vs/workbench/services/progress/browser/progressService'; import {EditorArrangement} from 'vs/workbench/services/editor/common/editorService'; @@ -238,7 +238,7 @@ suite('Workbench UI Services', () => { return null; }); - let telemetryService = new MainTelemetryService(); + let telemetryService = new TelemetryService(); let services = { eventService: eventService, @@ -341,7 +341,7 @@ suite('Workbench UI Services', () => { let contextService = new TestContextService(TestWorkspace); let eventService = new TestEventService(); let requestService = new TestRequestService(); - let telemetryService = new MainTelemetryService(); + let telemetryService = new TelemetryService(); let services = { eventService: eventService, diff --git a/src/vs/workbench/test/browser/servicesTestUtils.ts b/src/vs/workbench/test/browser/servicesTestUtils.ts index e4131caff04..34368b5e2ed 100644 --- a/src/vs/workbench/test/browser/servicesTestUtils.ts +++ b/src/vs/workbench/test/browser/servicesTestUtils.ts @@ -10,7 +10,7 @@ import {Promise, TPromise} from 'vs/base/common/winjs.base'; import EventEmitter = require('vs/base/common/eventEmitter'); import Paths = require('vs/base/common/paths'); import URI from 'vs/base/common/uri'; -import MainTelemetryService = require('vs/platform/telemetry/browser/mainTelemetryService'); +import {NullTelemetryService} from 'vs/platform/telemetry/common/telemetry'; import Storage = require('vs/workbench/common/storage'); import WorkbenchEditorCommon = require('vs/workbench/common/editor'); import Event from 'vs/base/common/event'; @@ -216,7 +216,7 @@ export class TestStorageService extends EventEmitter.EventEmitter implements ISt export class TestRequestService extends BaseRequestService { constructor(workspace = TestWorkspace) { - super(new TestContextService(), new MainTelemetryService.MainTelemetryService()); + super(new TestContextService(), NullTelemetryService); } } @@ -232,7 +232,7 @@ export interface IMockRequestHandler { export class MockRequestService extends BaseRequestService { constructor(workspace: any, private handler: IMockRequestHandler) { - super(new TestContextService(), new MainTelemetryService.MainTelemetryService()); + super(new TestContextService(), NullTelemetryService); } public makeRequest(options: http.IXHROptions): TPromise { From 35e26004c82267f85ec6300d386bd46bad53f061 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 16:09:29 +0200 Subject: [PATCH 075/117] allow to launch tokenizer tests from editor --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 4c02db01c66..322d91bce37 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -40,6 +40,20 @@ "sourceMaps": true, "outDir": "${workspaceRoot}/out" }, + { + "name": "VSCode Tokenizer Tests", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "${workspaceRoot}/extensions/vscode-colorize-tests/test", + "--extensionDevelopmentPath=${workspaceRoot}/extensions/vscode-colorize-tests", + "--extensionTestsPath=${workspaceRoot}/extensions/vscode-colorize-tests/out" + ], + "stopOnEntry": false, + "sourceMaps": true, + "outDir": "${workspaceRoot}/out" + }, { "name": "Attach to VSCode", "type": "chrome", From 259cb8eadc769441235b1baf4c960b16b5c27429 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 16:09:22 +0200 Subject: [PATCH 076/117] streamline cleanup patterns, #5219 --- .../telemetry/browser/telemetryService.ts | 43 ++++++++++++------- src/vs/platform/telemetry/common/telemetry.ts | 12 ------ .../electronTelemetryService.ts | 4 +- .../test/node/telemetryService.test.ts | 2 +- src/vs/workbench/electron-browser/shell.ts | 5 ++- 5 files changed, 34 insertions(+), 32 deletions(-) diff --git a/src/vs/platform/telemetry/browser/telemetryService.ts b/src/vs/platform/telemetry/browser/telemetryService.ts index b9a07f7d642..905c636aceb 100644 --- a/src/vs/platform/telemetry/browser/telemetryService.ts +++ b/src/vs/platform/telemetry/browser/telemetryService.ts @@ -7,7 +7,7 @@ import * as Platform from 'vs/base/common/platform'; import * as uuid from 'vs/base/common/uuid'; -import {ITelemetryService, ITelemetryServiceConfig, ITelemetryAppender, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; +import {ITelemetryService, ITelemetryAppender, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; import ErrorTelemetry from 'vs/platform/telemetry/common/errorTelemetry'; import {IdleMonitor, UserStatus} from 'vs/base/browser/idleMonitor'; import {TPromise} from 'vs/base/common/winjs.base'; @@ -15,6 +15,18 @@ import {IDisposable, dispose} from 'vs/base/common/lifecycle'; import {TimeKeeper, ITimerEvent} from 'vs/base/common/timer'; import {withDefaults, cloneAndChange} from 'vs/base/common/objects'; +export interface ITelemetryServiceConfig { + userOptIn?: boolean; + + enableHardIdle?: boolean; + enableSoftIdle?: boolean; + sessionID?: string; + commitHash?: string; + version?: string; + + cleanupPatterns?: [RegExp,string][]; +} + export class TelemetryService implements ITelemetryService { // how long of inactivity before a user is considered 'inactive' - 2 minutes @@ -48,6 +60,16 @@ export class TelemetryService implements ITelemetryService { userOptIn: true, }); + // static cleanup patterns for: + // #1 `file:///DANGEROUS/PATH/resources/app/Useful/Information` + // #2 // Any other file path that doesn't match the approved form above should be cleaned. + // #3 "Error: ENOENT; no such file or directory" is often followed with PII, clean it + this._configuration.cleanupPatterns.push( + [/file:\/\/\/.*?\/resources\/app\//gi, ''], + [/file:\/\/\/.*/gi, ''], + [/ENOENT: no such file or directory.*?\'([^\']+)\'/gi, 'ENOENT: no such file or directory'] + ); + this._telemetryInfo = { sessionId: this._configuration.sessionID, instanceId: undefined, @@ -157,23 +179,12 @@ export class TelemetryService implements ITelemetryService { } } - protected _cleanupInfo(stack: string): string { - - // `file:///DANGEROUS/PATH/resources/app/Useful/Information` - let reg = /file:\/\/\/.*?\/resources\/app\//gi; - stack = stack.replace(reg, ''); - - // Any other file path that doesn't match the approved form above should be cleaned. - reg = /file:\/\/\/.*/gi; - stack = stack.replace(reg, ''); - - // "Error: ENOENT; no such file or directory" is often followed with PII, clean it - reg = /ENOENT: no such file or directory.*?\'([^\']+)\'/gi; - stack = stack.replace(reg, 'ENOENT: no such file or directory'); + private _cleanupInfo(stack: string): string { // sanitize with configured cleanup patterns - for (let pattern of this._configuration.cleanupPatterns) { - stack = stack.replace(pattern, ''); + for (let tuple of this._configuration.cleanupPatterns) { + let [regexp, replaceValue] = tuple; + stack = stack.replace(regexp, replaceValue); } return stack; diff --git a/src/vs/platform/telemetry/common/telemetry.ts b/src/vs/platform/telemetry/common/telemetry.ts index 4f4dd6d9dd3..d20dbfffe08 100644 --- a/src/vs/platform/telemetry/common/telemetry.ts +++ b/src/vs/platform/telemetry/common/telemetry.ts @@ -66,18 +66,6 @@ export interface ITelemetryAppender extends IDisposable { log(eventName: string, data?: any): void; } -export interface ITelemetryServiceConfig { - userOptIn?: boolean; - - enableHardIdle?: boolean; - enableSoftIdle?: boolean; - sessionID?: string; - commitHash?: string; - version?: string; - - cleanupPatterns?: RegExp[]; -} - export class TelemetryAppendersRegistry implements ITelemetryAppendersRegistry { private _telemetryAppenderCtors: IConstructorSignature0[]; diff --git a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts index 6f4c507c61b..5674dfd184c 100644 --- a/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts +++ b/src/vs/platform/telemetry/electron-browser/electronTelemetryService.ts @@ -10,8 +10,8 @@ import { TPromise } from 'vs/base/common/winjs.base'; import * as nls from 'vs/nls'; import * as errors from 'vs/base/common/errors'; import * as uuid from 'vs/base/common/uuid'; -import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; -import {ITelemetryService, ITelemetryInfo, ITelemetryServiceConfig} from 'vs/platform/telemetry/common/telemetry'; +import {TelemetryService, ITelemetryServiceConfig} from 'vs/platform/telemetry/browser/telemetryService'; +import {ITelemetryService, ITelemetryInfo} from 'vs/platform/telemetry/common/telemetry'; import {IStorageService} from 'vs/platform/storage/common/storage'; import {IConfigurationRegistry, Extensions} from 'vs/platform/configuration/common/configurationRegistry'; import {IConfigurationService} from 'vs/platform/configuration/common/configuration'; diff --git a/src/vs/platform/telemetry/test/node/telemetryService.test.ts b/src/vs/platform/telemetry/test/node/telemetryService.test.ts index e5dc727f200..263c395c4dc 100644 --- a/src/vs/platform/telemetry/test/node/telemetryService.test.ts +++ b/src/vs/platform/telemetry/test/node/telemetryService.test.ts @@ -410,7 +410,7 @@ suite('TelemetryService', () => { assert.equal(errorStub.callCount, 2); assert.equal(testAppender.events[0].data.filename.indexOf(settings.dangerousPathWithImportantInfo), -1); - assert.equal(testAppender.events[0].data.filename, settings.importantInfo + '/test.js'); + assert.equal(testAppender.events[0].data.filename, '' + settings.importantInfo + '/test.js'); service.dispose(); })); diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index b9ddf0477ce..63bcf560c82 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -243,7 +243,10 @@ export class WorkbenchShell { && !!this.configuration.env.enableTelemetry) { this.telemetryService = new ElectronTelemetryService(this.configurationService, this.storageService, { - cleanupPatterns: [new RegExp(escapeRegExpCharacters(this.configuration.env.appRoot), 'gi'), new RegExp(escapeRegExpCharacters(this.configuration.env.userExtensionsHome), 'gi')], + cleanupPatterns: [ + [new RegExp(escapeRegExpCharacters(this.configuration.env.appRoot), 'gi'), ''], + [new RegExp(escapeRegExpCharacters(this.configuration.env.userExtensionsHome), 'gi'), ''] + ], version: this.configuration.env.version, commitHash: this.configuration.env.commitHash }); From ce7dc9cd0ed8a401a48875b9c7891eaa9508e221 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 16:12:59 +0200 Subject: [PATCH 077/117] use NullTelemetryService in tests, #5219 --- src/vs/platform/telemetry/common/telemetry.ts | 4 +--- .../parts/files/test/browser/fileEditorInput.test.ts | 8 ++++---- src/vs/workbench/test/browser/services.test.ts | 6 +++--- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/vs/platform/telemetry/common/telemetry.ts b/src/vs/platform/telemetry/common/telemetry.ts index d20dbfffe08..1f95616b42e 100644 --- a/src/vs/platform/telemetry/common/telemetry.ts +++ b/src/vs/platform/telemetry/common/telemetry.ts @@ -10,9 +10,7 @@ import {IDisposable} from 'vs/base/common/lifecycle'; import {ITimerEvent, nullEvent} from 'vs/base/common/timer'; import {createDecorator, ServiceIdentifier, IInstantiationService, IConstructorSignature0} from 'vs/platform/instantiation/common/instantiation'; -export const ID = 'telemetryService'; - -export const ITelemetryService = createDecorator(ID); +export const ITelemetryService = createDecorator('telemetryService'); export interface ITelemetryInfo { sessionId: string; diff --git a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts index 56b3807ce71..af45daf3ce6 100644 --- a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts +++ b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts @@ -11,7 +11,7 @@ import {join} from 'vs/base/common/paths'; import {FileEditorInput} from 'vs/workbench/parts/files/browser/editors/fileEditorInput'; import {createInstantiationService} from 'vs/platform/instantiation/common/instantiationService'; import {TextFileService} from 'vs/workbench/parts/files/browser/textFileServices'; -import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; +import {NullTelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {FileTracker} from 'vs/workbench/parts/files/browser/fileTracker'; import {TestFileService, TestLifecycleService, TestEditorService, TestPartService, TestConfigurationService, TestEventService, TestContextService, TestStorageService} from 'vs/workbench/test/browser/servicesTestUtils'; import {createMockModelService, createMockModeService} from 'vs/editor/test/common/servicesTestUtils'; @@ -25,7 +25,7 @@ suite('Files - FileEditorInput', () => { test('FileEditorInput', function (done) { let editorService = new TestEditorService(function () { }); let eventService = new TestEventService(); - let telemetryService = new TelemetryService(); + let telemetryService = NullTelemetryService; let contextService = new TestContextService(); let instantiationService = createInstantiationService({ @@ -114,7 +114,7 @@ suite('Files - FileEditorInput', () => { test('FileTracker - dispose()', function (done) { let editorService = new TestEditorService(function () { }); - let telemetryService = new TelemetryService(); + let telemetryService = NullTelemetryService; let contextService = new TestContextService(); let eventService = new TestEventService(); @@ -158,7 +158,7 @@ suite('Files - FileEditorInput', () => { test('FileEditorInput - dispose() also works for folders', function (done) { let editorService = new TestEditorService(function () { }); - let telemetryService = new TelemetryService(); + let telemetryService = NullTelemetryService; let contextService = new TestContextService(); let eventService = new TestEventService(); diff --git a/src/vs/workbench/test/browser/services.test.ts b/src/vs/workbench/test/browser/services.test.ts index 0fd3e67aa33..2900249e4c2 100644 --- a/src/vs/workbench/test/browser/services.test.ts +++ b/src/vs/workbench/test/browser/services.test.ts @@ -20,7 +20,7 @@ import {TextFileService} from 'vs/workbench/parts/files/browser/textFileServices import {TestEventService, TestLifecycleService, TestPartService, TestStorageService, TestConfigurationService, TestRequestService, TestContextService, TestWorkspace, TestEditorService, MockRequestService} from 'vs/workbench/test/browser/servicesTestUtils'; import {Viewlet} from 'vs/workbench/browser/viewlet'; import {EventType} from 'vs/workbench/common/events'; -import {TelemetryService} from 'vs/platform/telemetry/browser/telemetryService'; +import {NullTelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {UntitledEditorService} from 'vs/workbench/services/untitled/common/untitledEditorService'; import {WorkbenchProgressService, ScopedService} from 'vs/workbench/services/progress/browser/progressService'; import {EditorArrangement} from 'vs/workbench/services/editor/common/editorService'; @@ -238,7 +238,7 @@ suite('Workbench UI Services', () => { return null; }); - let telemetryService = new TelemetryService(); + let telemetryService = NullTelemetryService; let services = { eventService: eventService, @@ -341,7 +341,7 @@ suite('Workbench UI Services', () => { let contextService = new TestContextService(TestWorkspace); let eventService = new TestEventService(); let requestService = new TestRequestService(); - let telemetryService = new TelemetryService(); + let telemetryService = NullTelemetryService; let services = { eventService: eventService, From 0948256551d51949c330435cc5f4aa126d63f4d1 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 16:25:30 +0200 Subject: [PATCH 078/117] debt - BaseRequestService isn't needed in extension host --- src/vs/workbench/node/extensionHostMain.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/vs/workbench/node/extensionHostMain.ts b/src/vs/workbench/node/extensionHostMain.ts index 3257fb2a4bb..addf7d0262b 100644 --- a/src/vs/workbench/node/extensionHostMain.ts +++ b/src/vs/workbench/node/extensionHostMain.ts @@ -23,14 +23,13 @@ import InstantiationService = require('vs/platform/instantiation/common/instanti import {ExtHostExtensionService} from 'vs/platform/extensions/common/nativeExtensionService'; import {ExtHostThreadService} from 'vs/platform/thread/common/extHostThreadService'; import {RemoteTelemetryService} from 'vs/platform/telemetry/common/remoteTelemetryService'; -import {BaseRequestService} from 'vs/platform/request/common/baseRequestService'; import {BaseWorkspaceContextService} from 'vs/platform/workspace/common/baseWorkspaceContextService'; import {ModeServiceImpl} from 'vs/editor/common/services/modeServiceImpl'; import {ExtensionScanner, MessagesCollector} from 'vs/workbench/node/extensionPoints'; -import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; -import { Client } from 'vs/base/node/service.net'; -import { IExtensionsService } from 'vs/workbench/parts/extensions/common/extensions'; -import { ExtensionsService } from 'vs/workbench/parts/extensions/node/extensionsService'; +import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace'; +import {Client} from 'vs/base/node/service.net'; +import {IExtensionsService} from 'vs/workbench/parts/extensions/common/extensions'; +import {ExtensionsService} from 'vs/workbench/parts/extensions/node/extensionsService'; const DIRNAME = URI.parse(require.toUrl('./')).fsPath; const BASE_PATH = paths.normalize(paths.join(DIRNAME, '../../../..')); @@ -60,14 +59,12 @@ export function createServices(remoteCom: IMainProcessExtHostIPC, initData: IIni let threadService = new ExtHostThreadService(remoteCom); threadService.setInstantiationService(InstantiationService.createInstantiationService({ threadService: threadService })); let telemetryService = new RemoteTelemetryService('pluginHostTelemetry', threadService); - let requestService = new BaseRequestService(contextService, telemetryService); let modelService = threadService.getRemotable(ExtHostModelService); let extensionService = new ExtHostExtensionService(threadService, telemetryService); let modeService = new ModeServiceImpl(threadService, extensionService); let _services: any = { contextService, - requestService, modelService, threadService, modeService, From 20c490899ef7464ee181404dcf299e5fd9fd7c56 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 16:20:54 +0200 Subject: [PATCH 079/117] plugin => extension --- src/vs/workbench/electron-main/env.ts | 10 +++++----- src/vs/workbench/electron-main/window.ts | 2 +- src/vs/workbench/electron-main/windows.ts | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/vs/workbench/electron-main/env.ts b/src/vs/workbench/electron-main/env.ts index 0c2265893e3..124be1ec331 100644 --- a/src/vs/workbench/electron-main/env.ts +++ b/src/vs/workbench/electron-main/env.ts @@ -100,12 +100,12 @@ if (!fs.existsSync(userHome)) { fs.mkdirSync(userHome); } -export const userExtensionsHome = cliArgs.pluginHomePath || path.join(userHome, 'extensions'); +export const userExtensionsHome = cliArgs.extensionsHomePath || path.join(userHome, 'extensions'); if (!fs.existsSync(userExtensionsHome)) { fs.mkdirSync(userExtensionsHome); } -// Helper to identify if we have plugin tests to run from the command line without debugger +// Helper to identify if we have extension tests to run from the command line without debugger export const isTestingFromCli = cliArgs.extensionTestsPath && !cliArgs.debugBrkExtensionHost; export function log(...a: any[]): void { @@ -125,7 +125,7 @@ export interface ICommandLineArguments { logExtensionHostCommunication: boolean; disableExtensions: boolean; - pluginHomePath: string; + extensionsHomePath: string; extensionDevelopmentPath: string; extensionTestsPath: string; @@ -199,13 +199,13 @@ function parseCli(): ICommandLineArguments { verboseLogging: !!opts['verbose'], debugExtensionHostPort: debugExtensionHostPort, debugBrkExtensionHost: debugBrkExtensionHost, - logExtensionHostCommunication: !!opts['logPluginHostCommunication'], + logExtensionHostCommunication: !!opts['logExtensionHostCommunication'], firstrun: !!opts['squirrel-firstrun'], openNewWindow: !!opts['n'] || !!opts['new-window'], openInSameWindow: !!opts['r'] || !!opts['reuse-window'], gotoLineMode: gotoLineMode, diffMode: (!!opts['d'] || !!opts['diff']) && pathArguments.length === 2, - pluginHomePath: normalizePath(parseString(args, '--extensionHomePath')), + extensionsHomePath: normalizePath(parseString(args, '--extensionHomePath')), extensionDevelopmentPath: normalizePath(parseString(args, '--extensionDevelopmentPath')), extensionTestsPath: normalizePath(parseString(args, '--extensionTestsPath')), disableExtensions: !!opts['disableExtensions'] || !!opts['disable-extensions'], diff --git a/src/vs/workbench/electron-main/window.ts b/src/vs/workbench/electron-main/window.ts index 2cdf2a1e5b1..8e5716d5342 100644 --- a/src/vs/workbench/electron-main/window.ts +++ b/src/vs/workbench/electron-main/window.ts @@ -407,7 +407,7 @@ export class VSCodeWindow { configuration.logExtensionHostCommunication = cli.logExtensionHostCommunication; configuration.debugExtensionHostPort = cli.debugExtensionHostPort; configuration.debugBrkExtensionHost = cli.debugBrkExtensionHost; - configuration.pluginHomePath = cli.pluginHomePath; + configuration.extensionsHomePath = cli.extensionsHomePath; } // Load config diff --git a/src/vs/workbench/electron-main/windows.ts b/src/vs/workbench/electron-main/windows.ts index f70665a9572..0170458c790 100644 --- a/src/vs/workbench/electron-main/windows.ts +++ b/src/vs/workbench/electron-main/windows.ts @@ -880,7 +880,7 @@ export class WindowsManager { configuration.logExtensionHostCommunication = currentWindowConfig.logExtensionHostCommunication; configuration.debugBrkExtensionHost = currentWindowConfig.debugBrkExtensionHost; configuration.debugExtensionHostPort = currentWindowConfig.debugExtensionHostPort; - configuration.pluginHomePath = currentWindowConfig.pluginHomePath; + configuration.extensionsHomePath = currentWindowConfig.extensionsHomePath; } } From 102ce1c6b61f45375e6c14672bce9589415b17e8 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 13 Apr 2016 16:44:49 +0200 Subject: [PATCH 080/117] update for electron update --- OSSREADME.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OSSREADME.json b/OSSREADME.json index 057b1de7214..ce9ce6acb8e 100644 --- a/OSSREADME.json +++ b/OSSREADME.json @@ -8,12 +8,12 @@ }, { "name": "chromium", - "version": "45.0.2454.85", + "version": "49.0.2623.75", "repositoryURL": "http://www.chromium.org/Home", "licenseDetail": [ "BSD License", "", - "Copyright 2014 The Chromium Authors. All rights reserved.", + "Copyright 2015 The Chromium Authors. All rights reserved.", "", "Redistribution and use in source and binary forms, with or without modification,", "are permitted provided that the following conditions are met:", @@ -44,20 +44,20 @@ }, { "name": "libchromiumcontent", - "version": "45.0.2454.85 ", + "version": "49.0.2623.75", "license": "MIT", "repositoryURL": "https://github.com/atom/libchromiumcontent", "isProd": true }, { "name": "nodejs", - "version": "4.1.1", + "version": "5.10.0", "repositoryURL": "https://github.com/nodejs/node", "isProd": true }, { "name": "electron", - "version": "0.35.6", + "version": "0.37.5", "license": "MIT", "repositoryURL": "https://github.com/atom/electron", "isProd": true From f0d88b60dca22dde4b12c1b5a53d803fe2d617f2 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 13 Apr 2016 18:08:20 +0200 Subject: [PATCH 081/117] debt - move ParameterHintsRegistry --- src/vs/editor/common/modes.ts | 4 +++- .../editor/contrib/parameterHints/browser/parameterHints.ts | 2 +- .../contrib/parameterHints/browser/parameterHintsModel.ts | 4 ++-- .../editor/contrib/parameterHints/common/parameterHints.ts | 5 +---- src/vs/languages/typescript/common/languageFeatures.ts | 3 +-- src/vs/workbench/api/node/extHostLanguageFeatures.ts | 3 +-- 6 files changed, 9 insertions(+), 12 deletions(-) diff --git a/src/vs/editor/common/modes.ts b/src/vs/editor/common/modes.ts index 60c32eb4640..36badf8076b 100644 --- a/src/vs/editor/common/modes.ts +++ b/src/vs/editor/common/modes.ts @@ -764,4 +764,6 @@ export const ReferenceSearchRegistry = new LanguageFeatureRegistry('renameSupport'); -export var SuggestRegistry = new LanguageFeatureRegistry('suggestSupport'); +export const SuggestRegistry = new LanguageFeatureRegistry('suggestSupport'); + +export const ParameterHintsRegistry = new LanguageFeatureRegistry('parameterHintsSupport'); diff --git a/src/vs/editor/contrib/parameterHints/browser/parameterHints.ts b/src/vs/editor/contrib/parameterHints/browser/parameterHints.ts index 8499b9d80ce..aa48cd10c10 100644 --- a/src/vs/editor/contrib/parameterHints/browser/parameterHints.ts +++ b/src/vs/editor/contrib/parameterHints/browser/parameterHints.ts @@ -13,7 +13,7 @@ import {ICommonCodeEditor, IEditorActionDescriptorData, IEditorContribution} fro import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; import {EditorBrowserRegistry} from 'vs/editor/browser/editorBrowserExtensions'; -import {ParameterHintsRegistry} from '../common/parameterHints'; +import {ParameterHintsRegistry} from 'vs/editor/common/modes'; import {ParameterHintsModel} from './parameterHintsModel'; import {ParameterHintsWidget} from './parameterHintsWidget'; diff --git a/src/vs/editor/contrib/parameterHints/browser/parameterHintsModel.ts b/src/vs/editor/contrib/parameterHints/browser/parameterHintsModel.ts index 378e623634a..3a6c3b7f908 100644 --- a/src/vs/editor/contrib/parameterHints/browser/parameterHintsModel.ts +++ b/src/vs/editor/contrib/parameterHints/browser/parameterHintsModel.ts @@ -10,8 +10,8 @@ import {EventEmitter, IEventEmitter, ListenerCallback} from 'vs/base/common/even import {IDisposable, dispose} from 'vs/base/common/lifecycle'; import {TPromise} from 'vs/base/common/winjs.base'; import {EventType, ICommonCodeEditor, ICursorSelectionChangedEvent, IModeSupportChangedEvent} from 'vs/editor/common/editorCommon'; -import {IParameterHints} from 'vs/editor/common/modes'; -import {ParameterHintsRegistry, getParameterHints} from '../common/parameterHints'; +import {ParameterHintsRegistry, IParameterHints} from 'vs/editor/common/modes'; +import {getParameterHints} from '../common/parameterHints'; export interface IHintEvent { hints: IParameterHints; diff --git a/src/vs/editor/contrib/parameterHints/common/parameterHints.ts b/src/vs/editor/contrib/parameterHints/common/parameterHints.ts index a973cce9a94..167eca90413 100644 --- a/src/vs/editor/contrib/parameterHints/common/parameterHints.ts +++ b/src/vs/editor/contrib/parameterHints/common/parameterHints.ts @@ -9,10 +9,7 @@ import {illegalArgument} from 'vs/base/common/errors'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel, IPosition} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IParameterHints, IParameterHintsSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; - -export const ParameterHintsRegistry = new LanguageFeatureRegistry('parameterHintsSupport'); +import {IParameterHints, ParameterHintsRegistry} from 'vs/editor/common/modes'; export function getParameterHints(model:IModel, position:IPosition, triggerCharacter: string): TPromise { diff --git a/src/vs/languages/typescript/common/languageFeatures.ts b/src/vs/languages/typescript/common/languageFeatures.ts index b635f7255c3..826bd032870 100644 --- a/src/vs/languages/typescript/common/languageFeatures.ts +++ b/src/vs/languages/typescript/common/languageFeatures.ts @@ -13,7 +13,6 @@ import * as modes from 'vs/editor/common/modes'; import matches from 'vs/editor/common/modes/languageSelector'; import {IMarkerService, IMarkerData} from 'vs/platform/markers/common/markers'; import {IModelService} from 'vs/editor/common/services/modelService'; -import {ParameterHintsRegistry} from 'vs/editor/contrib/parameterHints/common/parameterHints'; import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; import {ExtraInfoRegistry} from 'vs/editor/contrib/hover/common/hover'; import {DeclarationRegistry} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; @@ -27,7 +26,7 @@ export function register(modelService: IModelService, markerService: IMarkerServ const disposables: lifecycle.IDisposable[] = []; disposables.push(modes.SuggestRegistry.register(selector, new SuggestAdapter(modelService, worker))); - disposables.push(ParameterHintsRegistry.register(selector, new ParameterHintsAdapter(modelService, worker))); + disposables.push(modes.ParameterHintsRegistry.register(selector, new ParameterHintsAdapter(modelService, worker))); disposables.push(ExtraInfoRegistry.register(selector, new QuickInfoAdapter(modelService, worker))); disposables.push(OccurrencesRegistry.register(selector, new OccurrencesAdapter(modelService, worker))); disposables.push(DeclarationRegistry.register(selector, new DeclarationAdapter(modelService, worker))); diff --git a/src/vs/workbench/api/node/extHostLanguageFeatures.ts b/src/vs/workbench/api/node/extHostLanguageFeatures.ts index 4e49af33477..789a441c760 100644 --- a/src/vs/workbench/api/node/extHostLanguageFeatures.ts +++ b/src/vs/workbench/api/node/extHostLanguageFeatures.ts @@ -24,7 +24,6 @@ import {OutlineRegistry, IOutlineEntry, IOutlineSupport} from 'vs/editor/contrib import {NavigateTypesSupportRegistry, INavigateTypesSupport, ITypeBearing} from 'vs/workbench/parts/search/common/search'; import {FormatRegistry, FormatOnTypeRegistry} from 'vs/editor/contrib/format/common/format'; import {CodeLensRegistry} from 'vs/editor/contrib/codelens/common/codelens'; -import {ParameterHintsRegistry} from 'vs/editor/contrib/parameterHints/common/parameterHints'; import {asWinJsPromise, ShallowCancelThenPromise} from 'vs/base/common/async'; // --- adapter @@ -1044,7 +1043,7 @@ export class MainThreadLanguageFeatures { // --- parameter hints $registerParameterHintsSupport(handle: number, selector: vscode.DocumentSelector, triggerCharacter: string[]): TPromise { - this._registrations[handle] = ParameterHintsRegistry.register(selector, { + this._registrations[handle] = modes.ParameterHintsRegistry.register(selector, { getParameterHints: (resource: URI, position: IPosition, triggerCharacter?: string): TPromise => { return this._proxy.$getParameterHints(handle, resource, position, triggerCharacter); }, From 8317c45b73a4f6f865c46514f1714e1735f64ccc Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 16:48:56 +0200 Subject: [PATCH 082/117] output: introduce channel.id --- .../parts/extensions/common/extensions.ts | 3 ++- .../extensions.contribution.ts | 4 ++-- .../git/browser/gitWorkbenchContributions.ts | 2 +- .../parts/output/browser/outputActions.ts | 2 +- .../workbench/parts/output/common/output.ts | 23 +++++++++++-------- .../parts/output/common/outputServices.ts | 12 +++++----- .../electron-browser/task.contribution.ts | 5 ++-- 7 files changed, 29 insertions(+), 22 deletions(-) diff --git a/src/vs/workbench/parts/extensions/common/extensions.ts b/src/vs/workbench/parts/extensions/common/extensions.ts index 1bd12d9efb6..4979e86d55c 100644 --- a/src/vs/workbench/parts/extensions/common/extensions.ts +++ b/src/vs/workbench/parts/extensions/common/extensions.ts @@ -84,4 +84,5 @@ export interface IExtensionTipsService { getRecommendations(): TPromise; } -export const ExtensionsLabel = nls.localize('extensions', "Extensions"); \ No newline at end of file +export const ExtensionsLabel = nls.localize('extensions', "Extensions"); +export const ExtensionsChannelId = 'extensions'; \ No newline at end of file diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensions.contribution.ts b/src/vs/workbench/parts/extensions/electron-browser/extensions.contribution.ts index 626715f89f2..b0374e2c538 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensions.contribution.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensions.contribution.ts @@ -8,7 +8,7 @@ import { Registry } from 'vs/platform/platform'; import { registerSingleton } from 'vs/platform/instantiation/common/extensions'; import { IStatusbarRegistry, Extensions as StatusbarExtensions, StatusbarItemDescriptor, StatusbarAlignment } from 'vs/workbench/browser/parts/statusbar/statusbar'; import { ExtensionsStatusbarItem } from 'vs/workbench/parts/extensions/electron-browser/extensionsWidgets'; -import { IGalleryService, ExtensionsLabel } from 'vs/workbench/parts/extensions/common/extensions'; +import { IGalleryService, ExtensionsLabel, ExtensionsChannelId } from 'vs/workbench/parts/extensions/common/extensions'; import { GalleryService } from 'vs/workbench/parts/extensions/common/vsoGalleryService'; import { IWorkbenchContributionsRegistry, Extensions as WorkbenchExtensions } from 'vs/workbench/common/contributions'; import { ExtensionsWorkbenchExtension } from 'vs/workbench/parts/extensions/electron-browser/extensionsWorkbenchExtension'; @@ -23,4 +23,4 @@ Registry.as(StatusbarExtensions.Statusbar) .registerStatusbarItem(new StatusbarItemDescriptor(ExtensionsStatusbarItem, StatusbarAlignment.LEFT,10000)); Registry.as(OutputExtensions.OutputChannels) - .registerChannel(ExtensionsLabel); \ No newline at end of file + .registerChannel(ExtensionsChannelId, ExtensionsLabel); \ No newline at end of file diff --git a/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts b/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts index b6f78d7926c..4fc09ccb378 100644 --- a/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts +++ b/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts @@ -452,7 +452,7 @@ export function registerContributions(): void { // Register Output Channel var outputChannelRegistry = platform.Registry.as(output.Extensions.OutputChannels); - outputChannelRegistry.registerChannel('Git'); + outputChannelRegistry.registerChannel('git', nls.localize('git', "Git")); // Register Git Output (platform.Registry.as(ext.Extensions.Workbench)).registerWorkbenchContribution( diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index 95e8b1a72f2..edffd00d6d9 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -123,7 +123,7 @@ export class SwitchOutputActionItem extends SelectActionItem { } private static getChannels(outputService: IOutputService): string[] { - const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels(); + const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.id); const usedChannels = outputService.getChannels(); return arrays.distinct(contributedChannels.concat(usedChannels)).sort(); // sort by name diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 8a1d82a2e7f..7ba81777a68 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -108,35 +108,40 @@ export interface IOutputService { onActiveOutputChannel: Event; } +export interface IOutputChannel { + + +} + export interface IOutputChannelRegistry { /** * Make an output channel known to the output world. */ - registerChannel(name: string): void; + registerChannel(id: string, name: string): void; /** * Returns the list of channels known to the output world. */ - getChannels(): string[]; + getChannels(): { id: string, displayName: string}[]; } class OutputChannelRegistry implements IOutputChannelRegistry { - private channels: string[]; + private channels: { id: string, displayName: string }[]; constructor() { this.channels = []; } - public registerChannel(name: string): void { - if (this.channels.indexOf(name) === -1) { - this.channels.push(name); + public registerChannel(id: string, displayName: string): void { + if (this.channels.every(channel => channel.id !== id)) { + this.channels.push({ id, displayName }); } } - public getChannels(): string[] { - return this.channels.slice(0); + public getChannels(): { id: string, displayName: string}[] { + return this.channels; } } -Registry.add(Extensions.OutputChannels, new OutputChannelRegistry()); \ No newline at end of file +Registry.add(Extensions.OutputChannels, new OutputChannelRegistry()); diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index ff6d5cf2fa4..0b8d27aae92 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -25,7 +25,7 @@ export class OutputService implements IOutputService { private receivedOutput: { [channel: string]: string; }; - private activeChannel: string; + private activeChannelId: string; private _onOutput: Emitter; private _onOutputChannel: Emitter; @@ -45,7 +45,7 @@ export class OutputService implements IOutputService { this.receivedOutput = Object.create(null); const channels = (Registry.as(Extensions.OutputChannels)).getChannels(); - this.activeChannel = this.storageService.get(OUTPUT_ACTIVE_CHANNEL_KEY, StorageScope.WORKSPACE, channels && channels.length > 0 ? channels[0] : null); + this.activeChannelId = this.storageService.get(OUTPUT_ACTIVE_CHANNEL_KEY, StorageScope.WORKSPACE, channels && channels.length > 0 ? channels[0].id : null); } public get onOutput(): Event { @@ -89,7 +89,7 @@ export class OutputService implements IOutputService { } public getActiveChannel(): string { - return this.activeChannel; + return this.activeChannelId; } public clearOutput(channel: string): void { @@ -100,12 +100,12 @@ export class OutputService implements IOutputService { public showOutput(channel: string, preserveFocus?: boolean): TPromise { const panel = this.panelService.getActivePanel(); - if (this.activeChannel === channel && panel && panel.getId() === OUTPUT_PANEL_ID) { + if (this.activeChannelId === channel && panel && panel.getId() === OUTPUT_PANEL_ID) { return TPromise.as(panel); } - this.activeChannel = channel; - this.storageService.store(OUTPUT_ACTIVE_CHANNEL_KEY, this.activeChannel, StorageScope.WORKSPACE); + this.activeChannelId = channel; + this.storageService.store(OUTPUT_ACTIVE_CHANNEL_KEY, this.activeChannelId, StorageScope.WORKSPACE); this._onActiveOutputChannel.fire(channel); // emit event that a new channel is active return this.panelService.openPanel(OUTPUT_PANEL_ID, !preserveFocus).then((outputPanel: OutputPanel) => { diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 9fc3bab33df..86288ce4886 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -452,7 +452,8 @@ interface TaskServiceEventData { class TaskService extends EventEmitter implements ITaskService { public serviceId = ITaskService; public static SERVICE_ID: string = 'taskService'; - public static OutputChannel:string = 'Tasks'; + public static OutputChannel:string = 'tasks'; + public static OutputChannelLabel:string = nls.localize('tasks', "Tasks"); private modeService: IModeService; private configurationService: IConfigurationService; @@ -831,7 +832,7 @@ if (Env.enableTasks) { // Output channel let outputChannelRegistry = Registry.as(OutputExt.OutputChannels); - outputChannelRegistry.registerChannel(TaskService.OutputChannel); + outputChannelRegistry.registerChannel(TaskService.OutputChannel, TaskService.OutputChannelLabel); (Registry.as(WorkbenchExtensions.Workbench)).registerWorkbenchContribution(TaskServiceParticipant); From 85294e40a57722498a2255f371181b9a72c86c2b Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 17:15:37 +0200 Subject: [PATCH 083/117] output: move append() to IOutputChannel --- .../api/node/extHostOutputService.ts | 2 +- .../electron-browser/extensionsWidgets.ts | 5 ++-- .../workbench/parts/git/browser/gitOutput.ts | 2 +- .../workbench/parts/output/common/output.ts | 12 ++++---- .../parts/output/common/outputEditorInput.ts | 2 +- .../parts/output/common/outputServices.ts | 23 +++++++++----- .../electron-browser/task.contribution.ts | 29 ++++++++++-------- .../parts/tasks/node/processRunnerSystem.ts | 30 +++++++++++-------- 8 files changed, 61 insertions(+), 44 deletions(-) diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 7872a96702f..c9171fda6ce 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -88,7 +88,7 @@ export class MainThreadOutputService { } public append(channel: string, value: string): TPromise { - this._outputService.append(channel, value); + this._outputService.getOutputChannel(channel).append(value); return undefined; } diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts index ba67dfe8236..e815238d2e7 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts @@ -15,7 +15,7 @@ import { IStatusbarItem } from 'vs/workbench/browser/parts/statusbar/statusbar'; import { IOutputService } from 'vs/workbench/parts/output/common/output'; import { IExtensionService, IMessage } from 'vs/platform/extensions/common/extensions'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; -import { IExtensionsService, ExtensionsLabel, IExtension, IExtensionManifest } from 'vs/workbench/parts/extensions/common/extensions'; +import { IExtensionsService, ExtensionsLabel, ExtensionsChannelId, IExtension, IExtensionManifest } from 'vs/workbench/parts/extensions/common/extensions'; import { IQuickOpenService } from 'vs/workbench/services/quickopen/common/quickOpenService'; import { getOutdatedExtensions } from 'vs/workbench/parts/extensions/common/extensionsUtil'; @@ -115,7 +115,8 @@ export class ExtensionsStatusbarItem implements IStatusbarItem { const name = extension && extension.name; const message = name ? `${ name }: ${ m.message }` : m.message; - this.outputService.append(ExtensionsLabel, message); + const outputChannel = this.outputService.getOutputChannel(ExtensionsChannelId); + outputChannel.append(message); this.outputService.showOutput(ExtensionsLabel, true); }); }); diff --git a/src/vs/workbench/parts/git/browser/gitOutput.ts b/src/vs/workbench/parts/git/browser/gitOutput.ts index e6094253a18..9f65bf01728 100644 --- a/src/vs/workbench/parts/git/browser/gitOutput.ts +++ b/src/vs/workbench/parts/git/browser/gitOutput.ts @@ -47,7 +47,7 @@ export class GitOutput implements ext.IWorkbenchContribution { } private onOutput(output: string): void { - this.outputService.append('Git', output); + this.outputService.getOutputChannel('Git').append(output); } public dispose(): void { diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 7ba81777a68..953ed0bb1a1 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -43,7 +43,7 @@ export const MAX_OUTPUT_LENGTH = 10000 /* Max. number of output lines to show in */ export interface IOutputEvent { output: string; - channel?: string; + channelId?: string; } export var IOutputService = createDecorator(OUTPUT_SERVICE_ID); @@ -53,10 +53,8 @@ export var IOutputService = createDecorator(OUTPUT_SERVICE_ID); */ export interface IOutputService { serviceId: ServiceIdentifier; - /** - * Appends output to the given channel. - */ - append(channel: string, output: string): void; + + getOutputChannel(id: string): IOutputChannel; /** * Returns the received output. @@ -110,6 +108,10 @@ export interface IOutputService { export interface IOutputChannel { + /** + * Appends output to the channel. + */ + append(output: string): void; } diff --git a/src/vs/workbench/parts/output/common/outputEditorInput.ts b/src/vs/workbench/parts/output/common/outputEditorInput.ts index 4430df22996..f3b0b668c51 100644 --- a/src/vs/workbench/parts/output/common/outputEditorInput.ts +++ b/src/vs/workbench/parts/output/common/outputEditorInput.ts @@ -86,7 +86,7 @@ export class OutputEditorInput extends StringEditorInput { } private onOutputReceived(e: IOutputEvent): void { - if (this.outputSet && e.channel === this.channel) { + if (this.outputSet && e.channelId === this.channel) { if (e.output) { this.bufferedOutput = strings.appendWithLimit(this.bufferedOutput, e.output, MAX_OUTPUT_LENGTH); this.scheduleOutputAppend(); diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 0b8d27aae92..801c0c04fc3 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -13,7 +13,7 @@ import {IInstantiationService} from 'vs/platform/instantiation/common/instantiat import {IStorageService, StorageScope} from 'vs/platform/storage/common/storage'; import {Registry} from 'vs/platform/platform'; import {EditorOptions} from 'vs/workbench/common/editor'; -import {IOutputEvent, IOutputService, Extensions, OUTPUT_PANEL_ID, IOutputChannelRegistry, MAX_OUTPUT_LENGTH} from 'vs/workbench/parts/output/common/output'; +import {IOutputEvent, IOutputChannel, IOutputService, Extensions, OUTPUT_PANEL_ID, IOutputChannelRegistry, MAX_OUTPUT_LENGTH} from 'vs/workbench/parts/output/common/output'; import {OutputEditorInput} from 'vs/workbench/parts/output/common/outputEditorInput'; import {OutputPanel} from 'vs/workbench/parts/output/browser/outputPanel'; import {IPanelService} from 'vs/workbench/services/panel/common/panelService'; @@ -60,13 +60,20 @@ export class OutputService implements IOutputService { return this._onActiveOutputChannel.event; } - public append(channel: string, output: string): void { + public getOutputChannel(id: string): IOutputChannel { + return { + append: (output: string) => this.append(id, output), + clear: () => this.clearOutput(id) + }; + } + + private append(channelId: string, output: string): void { // Initialize - if (!this.receivedOutput[channel]) { - this.receivedOutput[channel] = ''; + if (!this.receivedOutput[channelId]) { + this.receivedOutput[channelId] = ''; - this._onOutputChannel.fire(channel); // emit event that we have a new channel + this._onOutputChannel.fire(channelId); // emit event that we have a new channel } // Sanitize @@ -74,10 +81,10 @@ export class OutputService implements IOutputService { // Store if (output) { - this.receivedOutput[channel] = strings.appendWithLimit(this.receivedOutput[channel], output, MAX_OUTPUT_LENGTH); + this.receivedOutput[channelId] = strings.appendWithLimit(this.receivedOutput[channelId], output, MAX_OUTPUT_LENGTH); } - this._onOutput.fire({ output: output, channel }); + this._onOutput.fire({ output: output, channelId: channelId }); } public getOutput(channel: string): string { @@ -95,7 +102,7 @@ export class OutputService implements IOutputService { public clearOutput(channel: string): void { this.receivedOutput[channel] = ''; - this._onOutput.fire({ channel: channel, output: null /* indicator to clear output */ }); + this._onOutput.fire({ channelId: channel, output: null /* indicator to clear output */ }); } public showOutput(channel: string, preserveFocus?: boolean): TPromise { diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 86288ce4886..6657a1d0af1 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -182,20 +182,21 @@ class ConfigureTaskRunnerAction extends Action { } let contentPromise: TPromise; if (selection.autoDetect) { - this.outputService.showOutput(TaskService.OutputChannel); - this.outputService.append(TaskService.OutputChannel, nls.localize('ConfigureTaskRunnerAction.autoDetecting', 'Auto detecting tasks for {0}', selection.id) + '\n'); + this.outputService.showOutput(TaskService.OutputChannelId); + const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); + outputChannel.append(nls.localize('ConfigureTaskRunnerAction.autoDetecting', 'Auto detecting tasks for {0}', selection.id) + '\n'); let detector = new ProcessRunnerDetector(this.fileService, this.contextService, new SystemVariables(this.editorService, this.contextService)); contentPromise = detector.detect(false, selection.id).then((value) => { let config = value.config; if (value.stderr && value.stderr.length > 0) { value.stderr.forEach((line) => { - this.outputService.append(TaskService.OutputChannel, line + '\n'); + outputChannel.append(line + '\n'); }); this.messageService.show(Severity.Warning, nls.localize('ConfigureTaskRunnerAction.autoDetect', 'Auto detecting the task system failed. Using default template. Consult the task output for details.')); return selection.content; } else if (config) { if (value.stdout && value.stdout.length > 0) { - value.stdout.forEach(line => this.outputService.append(TaskService.OutputChannel, line + '\n')); + value.stdout.forEach(line => outputChannel.append(line + '\n')); } let content = JSON.stringify(config, null, '\t'); content = [ @@ -287,7 +288,7 @@ class ShowLogAction extends AbstractTaskAction { } public run(): Promise { - return this.outputService.showOutput(TaskService.OutputChannel); + return this.outputService.showOutput(TaskService.OutputChannelId); } } @@ -452,7 +453,7 @@ interface TaskServiceEventData { class TaskService extends EventEmitter implements ITaskService { public serviceId = ITaskService; public static SERVICE_ID: string = 'taskService'; - public static OutputChannel:string = 'tasks'; + public static OutputChannelId:string = 'tasks'; public static OutputChannelLabel:string = nls.localize('tasks', "Tasks"); private modeService: IModeService; @@ -545,8 +546,9 @@ class TaskService extends EventEmitter implements ITaskService { } } if (isAffected) { - this.outputService.append(TaskService.OutputChannel, nls.localize('TaskSystem.invalidTaskJson', 'Error: The content of the tasks.json file has syntax errors. Please correct them before executing a task.\n')); - this.outputService.showOutput(TaskService.OutputChannel, true); + const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); + outputChannel.append(nls.localize('TaskSystem.invalidTaskJson', 'Error: The content of the tasks.json file has syntax errors. Please correct them before executing a task.\n')); + this.outputService.showOutput(TaskService.OutputChannelId, true); return TPromise.wrapError({}); } } @@ -594,7 +596,7 @@ class TaskService extends EventEmitter implements ITaskService { if (config.buildSystem === 'service') { result = new LanguageServiceTaskSystem(config, this.telemetryService, this.modeService); } else if (this.isRunnerConfig(config)) { - result = new ProcessRunnerSystem(config, variables, this.markerService, this.modelService, this.telemetryService, this.outputService, TaskService.OutputChannel, clearOutput); + result = new ProcessRunnerSystem(config, variables, this.markerService, this.modelService, this.telemetryService, this.outputService, TaskService.OutputChannelId, clearOutput); } if (result === null) { this._taskSystemPromise = null; @@ -618,9 +620,10 @@ class TaskService extends EventEmitter implements ITaskService { if (stderr && stderr.length > 0) { stderr.forEach((line) => { result = false; - this.outputService.append(TaskService.OutputChannel, line + '\n'); + const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); + outputChannel.append(line + '\n'); }); - this.outputService.showOutput(TaskService.OutputChannel, true); + this.outputService.showOutput(TaskService.OutputChannelId, true); } return result; } @@ -784,7 +787,7 @@ class TaskService extends EventEmitter implements ITaskService { this.messageService.show(Severity.Error, nls.localize('TaskSystem.unknownError', 'An error has occurred while running a task. See task log for details.')); } if (showOutput) { - this.outputService.showOutput(TaskService.OutputChannel, true); + this.outputService.showOutput(TaskService.OutputChannelId, true); } } } @@ -832,7 +835,7 @@ if (Env.enableTasks) { // Output channel let outputChannelRegistry = Registry.as(OutputExt.OutputChannels); - outputChannelRegistry.registerChannel(TaskService.OutputChannel, TaskService.OutputChannelLabel); + outputChannelRegistry.registerChannel(TaskService.OutputChannelId, TaskService.OutputChannelLabel); (Registry.as(WorkbenchExtensions.Workbench)).registerWorkbenchContribution(TaskServiceParticipant); diff --git a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts index 87dbe6edd86..9593d572156 100644 --- a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts +++ b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts @@ -39,7 +39,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { private markerService: IMarkerService; private modelService: IModelService; private outputService: IOutputService; - private outputChannel: string; + private outputChannelId: string; private telemetryService: ITelemetryService; private validationStatus: ValidationStatus; @@ -57,7 +57,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { this.variables = variables; this.markerService = markerService; this.modelService = modelService; - this.outputChannel = outputChannel; + this.outputChannelId = outputChannel; this.outputService = outputService; this.telemetryService = telemetryService; @@ -77,7 +77,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { this.defaultTestTaskIdentifier = parseResult.defaultTestTaskIdentifier; if (!this.validationStatus.isOK()) { - this.outputService.showOutput(this.outputChannel, true); + this.outputService.showOutput(this.outputChannelId, true); } } @@ -177,10 +177,12 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { throw err; } else if (err instanceof Error) { let error = err; - this.outputService.append(this.outputChannel, error.message); + const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); + outputChannel.append(error.message); throw new TaskError(Severity.Error, error.message, TaskErrors.UnknownError); } else { - this.outputService.append(this.outputChannel, err.toString()); + const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); + outputChannel.append(err.toString()); throw new TaskError(Severity.Error, nls.localize('TaskRunnerSystem.unknownError', 'A unknown error has occurred while executing a task. See task output log for details.'), TaskErrors.UnknownError); } } @@ -267,7 +269,8 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { return this.handleError(task, error); }, (progress: LineData) => { let line = Strings.removeAnsiEscapeCodes(progress.line); - this.outputService.append(this.outputChannel, line + '\n'); + const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); + outputChannel.append(line + '\n'); watchingProblemMatcher.processLine(line); if (delayer === null) { delayer = new Async.Delayer(3000); @@ -304,7 +307,8 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { return this.handleError(task, error); }, (progress) => { let line = Strings.removeAnsiEscapeCodes(progress.line); - this.outputService.append(this.outputChannel, line + '\n'); + const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); + outputChannel.append(line + '\n'); startStopProblemMatcher.processLine(line); }); return { promise }; @@ -321,16 +325,16 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { if (error.error && !error.terminated) { let args:string = this.configuration.args ? this.configuration.args.join(' ') : ''; this.log(nls.localize('TaskRunnerSystem.childProcessError', 'Failed to launch external program {0} {1}.', this.configuration.command, args)); - this.outputService.append(this.outputChannel, error.error.message); + this.outputService.getOutputChannel(this.outputChannelId).append(error.error.message); makeVisible = true; } if (error.stdout) { - this.outputService.append(this.outputChannel, error.stdout); + this.outputService.getOutputChannel(this.outputChannelId).append(error.stdout); makeVisible = true; } if (error.stderr) { - this.outputService.append(this.outputChannel, error.stderr); + this.outputService.getOutputChannel(this.outputChannelId).append(error.stderr); makeVisible = true; } makeVisible = this.checkTerminated(task, error) || makeVisible; @@ -398,14 +402,14 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { } public log(value: string): void { - this.outputService.append(this.outputChannel, value + '\n'); + this.outputService.getOutputChannel(this.outputChannelId).append(value + '\n'); } private showOutput(): void { - this.outputService.showOutput(this.outputChannel, true); + this.outputService.showOutput(this.outputChannelId, true); } private clearOutput(): void { - this.outputService.clearOutput(this.outputChannel); + this.outputService.clearOutput(this.outputChannelId); } } \ No newline at end of file From 346a698cc5a4c05397977259870ada5d2bff4dfe Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 17:15:48 +0200 Subject: [PATCH 084/117] output: move clearOutput to IOutputChannel --- src/vs/workbench/api/node/extHostOutputService.ts | 2 +- .../workbench/parts/output/browser/outputActions.ts | 4 ++-- src/vs/workbench/parts/output/common/output.ts | 13 +++++-------- .../workbench/parts/output/common/outputServices.ts | 2 +- .../parts/tasks/node/processRunnerSystem.ts | 2 +- 5 files changed, 10 insertions(+), 13 deletions(-) diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index c9171fda6ce..8cbac64ca74 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -93,7 +93,7 @@ export class MainThreadOutputService { } public clear(channel: string): TPromise { - this._outputService.clearOutput(channel); + this._outputService.getOutputChannel(channel).clear(); return undefined; } diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index edffd00d6d9..20f3aaa83f1 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -53,7 +53,7 @@ export class ClearOutputAction extends Action { } public run(): TPromise { - this.outputService.clearOutput(this.outputService.getActiveChannel()); + this.outputService.getOutputChannel(this.outputService.getActiveChannel()).clear(); this.panelService.getActivePanel().focus(); return TPromise.as(true); @@ -84,7 +84,7 @@ export class ClearOutputEditorAction extends EditorAction { } public run(): TPromise { - this.outputService.clearOutput(this.outputService.getActiveChannel()); + this.outputService.getOutputChannel(this.outputService.getActiveChannel()).clear(); return TPromise.as(false); } } diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 953ed0bb1a1..663a034a1d1 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -74,14 +74,6 @@ export interface IOutputService { */ getActiveChannel(): string; - /** - * Clears all received output. - * - * The optional channel allows to clear the output for a specific channel. If you leave the - * channel out, you get clear the default channels output. - */ - clearOutput(channel: string): void; - /** * Opens the output for the given channel * @@ -113,6 +105,11 @@ export interface IOutputChannel { */ append(output: string): void; + + /** + * Clears all received output. + */ + clear(): void; } export interface IOutputChannelRegistry { diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 801c0c04fc3..a46d059a0e6 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -99,7 +99,7 @@ export class OutputService implements IOutputService { return this.activeChannelId; } - public clearOutput(channel: string): void { + private clearOutput(channel: string): void { this.receivedOutput[channel] = ''; this._onOutput.fire({ channelId: channel, output: null /* indicator to clear output */ }); diff --git a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts index 9593d572156..0c44c846f5f 100644 --- a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts +++ b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts @@ -410,6 +410,6 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { } private clearOutput(): void { - this.outputService.clearOutput(this.outputChannelId); + this.outputService.getOutputChannel(this.outputChannelId).clear(); } } \ No newline at end of file From 166a9c424654dece16f55a4cc8d56ac098694959 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 17:26:59 +0200 Subject: [PATCH 085/117] output: move show output to IOutputChannel --- .../api/node/extHostOutputService.ts | 2 +- .../electron-browser/extensionsWidgets.ts | 2 +- .../parts/git/browser/gitServices.ts | 2 +- .../git/browser/gitWorkbenchContributions.ts | 2 +- .../git/browser/views/changes/changesView.ts | 2 +- .../parts/output/browser/outputActions.ts | 6 ++--- .../workbench/parts/output/common/output.ts | 14 ++++------- .../parts/output/common/outputServices.ts | 23 ++++++++++--------- .../electron-browser/task.contribution.ts | 10 ++++---- .../parts/tasks/node/processRunnerSystem.ts | 4 ++-- 10 files changed, 32 insertions(+), 35 deletions(-) diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 8cbac64ca74..80ea3ddd111 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -98,7 +98,7 @@ export class MainThreadOutputService { } public reveal(channel: string, preserveFocus: boolean): TPromise { - this._outputService.showOutput(channel, preserveFocus); + this._outputService.getOutputChannel(channel).show(preserveFocus); return undefined; } diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts index e815238d2e7..31a13b6b27d 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts @@ -117,7 +117,7 @@ export class ExtensionsStatusbarItem implements IStatusbarItem { const outputChannel = this.outputService.getOutputChannel(ExtensionsChannelId); outputChannel.append(message); - this.outputService.showOutput(ExtensionsLabel, true); + this.outputService.getOutputChannel(ExtensionsChannelId).show(true); }); }); } diff --git a/src/vs/workbench/parts/git/browser/gitServices.ts b/src/vs/workbench/parts/git/browser/gitServices.ts index 83b878339b4..7f64e7e2113 100644 --- a/src/vs/workbench/parts/git/browser/gitServices.ts +++ b/src/vs/workbench/parts/git/browser/gitServices.ts @@ -689,7 +689,7 @@ export class GitService extends ee.EventEmitter } var error: Error; - var showOutputAction = new actions.Action('show.gitOutput', nls.localize('showOutput', "Show Output"), null, true, () => this.outputService.showOutput('Git')); + var showOutputAction = new actions.Action('show.gitOutput', nls.localize('showOutput', "Show Output"), null, true, () => this.outputService.getOutputChannel('Git').show()); var cancelAction = new actions.Action('close.message', nls.localize('cancel', "Cancel"), null, true, ()=>winjs.TPromise.as(true)); error = errors.create( diff --git a/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts b/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts index 4fc09ccb378..8bd12b49821 100644 --- a/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts +++ b/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts @@ -452,7 +452,7 @@ export function registerContributions(): void { // Register Output Channel var outputChannelRegistry = platform.Registry.as(output.Extensions.OutputChannels); - outputChannelRegistry.registerChannel('git', nls.localize('git', "Git")); + outputChannelRegistry.registerChannel('Git', nls.localize('git', "Git")); // Register Git Output (platform.Registry.as(ext.Extensions.Workbench)).registerWorkbenchContribution( diff --git a/src/vs/workbench/parts/git/browser/views/changes/changesView.ts b/src/vs/workbench/parts/git/browser/views/changes/changesView.ts index 7832d6ec572..fcc9f7a896d 100644 --- a/src/vs/workbench/parts/git/browser/views/changes/changesView.ts +++ b/src/vs/workbench/parts/git/browser/views/changes/changesView.ts @@ -264,7 +264,7 @@ export class ChangesView extends EventEmitter.EventEmitter implements GitView.IV this.instantiationService.createInstance(GitActions.GlobalUnstageAction), this.instantiationService.createInstance(GitActions.GlobalUndoAction), new ActionBar.Separator(), - new Actions.Action('show.gitOutput', nls.localize('showOutput', "Show Git Output"), null, true, () => this.outputService.showOutput('Git')) + new Actions.Action('show.gitOutput', nls.localize('showOutput', "Show Git Output"), null, true, () => this.outputService.getOutputChannel('Git').show()) ]; this.secondaryActions.forEach(a => this.toDispose.push(a)); diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index 20f3aaa83f1..6ce73e04638 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -39,7 +39,7 @@ export class ToggleOutputAction extends Action { return TPromise.as(null); } - return this.outputService.showOutput(this.outputService.getActiveChannel()); + return this.outputService.getOutputChannel(this.outputService.getActiveChannel()).show(); } } @@ -99,8 +99,8 @@ export class SwitchOutputAction extends Action { this.class = 'output-action switch-to-output'; } - public run(channel?: string): TPromise { - return this.outputService.showOutput(channel); + public run(channelId?: string): TPromise { + return this.outputService.getOutputChannel(channelId).show(); } } diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 663a034a1d1..b6922e85583 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -74,14 +74,6 @@ export interface IOutputService { */ getActiveChannel(): string; - /** - * Opens the output for the given channel - * - * The optional channel allows to show the output for a specific channel. If you leave the - * channel out, you show the default channels output. - */ - showOutput(channel: string, preserveFocus?: boolean): TPromise; - /** * Allows to register on Output events */ @@ -105,11 +97,15 @@ export interface IOutputChannel { */ append(output: string): void; - /** * Clears all received output. */ clear(): void; + + /** + * Opens the output for this channel. + */ + show(preserveFocus?: boolean): TPromise; } export interface IOutputChannelRegistry { diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index a46d059a0e6..5cf65f7de7b 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -63,7 +63,8 @@ export class OutputService implements IOutputService { public getOutputChannel(id: string): IOutputChannel { return { append: (output: string) => this.append(id, output), - clear: () => this.clearOutput(id) + clear: () => this.clearOutput(id), + show: (preserveFocus: boolean) => this.showOutput(id, preserveFocus) }; } @@ -87,8 +88,8 @@ export class OutputService implements IOutputService { this._onOutput.fire({ output: output, channelId: channelId }); } - public getOutput(channel: string): string { - return this.receivedOutput[channel] || ''; + public getOutput(channelId: string): string { + return this.receivedOutput[channelId] || ''; } public getChannels(): string[] { @@ -99,24 +100,24 @@ export class OutputService implements IOutputService { return this.activeChannelId; } - private clearOutput(channel: string): void { - this.receivedOutput[channel] = ''; + private clearOutput(channelId: string): void { + this.receivedOutput[channelId] = ''; - this._onOutput.fire({ channelId: channel, output: null /* indicator to clear output */ }); + this._onOutput.fire({ channelId: channelId, output: null /* indicator to clear output */ }); } - public showOutput(channel: string, preserveFocus?: boolean): TPromise { + private showOutput(channelId: string, preserveFocus?: boolean): TPromise { const panel = this.panelService.getActivePanel(); - if (this.activeChannelId === channel && panel && panel.getId() === OUTPUT_PANEL_ID) { + if (this.activeChannelId === channelId && panel && panel.getId() === OUTPUT_PANEL_ID) { return TPromise.as(panel); } - this.activeChannelId = channel; + this.activeChannelId = channelId; this.storageService.store(OUTPUT_ACTIVE_CHANNEL_KEY, this.activeChannelId, StorageScope.WORKSPACE); - this._onActiveOutputChannel.fire(channel); // emit event that a new channel is active + this._onActiveOutputChannel.fire(channelId); // emit event that a new channel is active return this.panelService.openPanel(OUTPUT_PANEL_ID, !preserveFocus).then((outputPanel: OutputPanel) => { - return outputPanel && outputPanel.setInput(OutputEditorInput.getInstance(this.instantiationService, channel), EditorOptions.create({ preserveFocus: preserveFocus })). + return outputPanel && outputPanel.setInput(OutputEditorInput.getInstance(this.instantiationService, channelId), EditorOptions.create({ preserveFocus: preserveFocus })). then(() => outputPanel); }); } diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 6657a1d0af1..9a851204cc5 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -182,7 +182,7 @@ class ConfigureTaskRunnerAction extends Action { } let contentPromise: TPromise; if (selection.autoDetect) { - this.outputService.showOutput(TaskService.OutputChannelId); + this.outputService.getOutputChannel(TaskService.OutputChannelId).show(); const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); outputChannel.append(nls.localize('ConfigureTaskRunnerAction.autoDetecting', 'Auto detecting tasks for {0}', selection.id) + '\n'); let detector = new ProcessRunnerDetector(this.fileService, this.contextService, new SystemVariables(this.editorService, this.contextService)); @@ -288,7 +288,7 @@ class ShowLogAction extends AbstractTaskAction { } public run(): Promise { - return this.outputService.showOutput(TaskService.OutputChannelId); + return this.outputService.getOutputChannel(TaskService.OutputChannelId).show(); } } @@ -548,7 +548,7 @@ class TaskService extends EventEmitter implements ITaskService { if (isAffected) { const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); outputChannel.append(nls.localize('TaskSystem.invalidTaskJson', 'Error: The content of the tasks.json file has syntax errors. Please correct them before executing a task.\n')); - this.outputService.showOutput(TaskService.OutputChannelId, true); + this.outputService.getOutputChannel(TaskService.OutputChannelId).show(true); return TPromise.wrapError({}); } } @@ -623,7 +623,7 @@ class TaskService extends EventEmitter implements ITaskService { const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); outputChannel.append(line + '\n'); }); - this.outputService.showOutput(TaskService.OutputChannelId, true); + this.outputService.getOutputChannel(TaskService.OutputChannelId).show(true); } return result; } @@ -787,7 +787,7 @@ class TaskService extends EventEmitter implements ITaskService { this.messageService.show(Severity.Error, nls.localize('TaskSystem.unknownError', 'An error has occurred while running a task. See task log for details.')); } if (showOutput) { - this.outputService.showOutput(TaskService.OutputChannelId, true); + this.outputService.getOutputChannel(TaskService.OutputChannelId).show(true); } } } diff --git a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts index 0c44c846f5f..12279d7c8c1 100644 --- a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts +++ b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts @@ -77,7 +77,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { this.defaultTestTaskIdentifier = parseResult.defaultTestTaskIdentifier; if (!this.validationStatus.isOK()) { - this.outputService.showOutput(this.outputChannelId, true); + this.showOutput(); } } @@ -406,7 +406,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { } private showOutput(): void { - this.outputService.showOutput(this.outputChannelId, true); + this.outputService.getOutputChannel(this.outputChannelId).show(true); } private clearOutput(): void { From c7a31712ca3ea513b03cb5892f79308e9ee59c53 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 17:37:07 +0200 Subject: [PATCH 086/117] output: move getOutput to IOutputChannel --- .../workbench/parts/output/common/output.ts | 23 ++++++++----------- .../parts/output/common/outputEditorInput.ts | 20 ++++++++-------- .../parts/output/common/outputServices.ts | 7 +++--- 3 files changed, 24 insertions(+), 26 deletions(-) diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index b6922e85583..8575d028e5a 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -56,14 +56,6 @@ export interface IOutputService { getOutputChannel(id: string): IOutputChannel; - /** - * Returns the received output. - * - * The optional channel allows to ask for output for a specific channel. If you leave the - * channel out, you get the default channels output. - */ - getOutput(channel: string): string; - /** * Returns all channels that received output in the current session. */ @@ -92,20 +84,25 @@ export interface IOutputService { export interface IOutputChannel { + /** + * The received output content. + */ + getContent(): string; + /** * Appends output to the channel. */ append(output: string): void; - /** - * Clears all received output. - */ - clear(): void; - /** * Opens the output for this channel. */ show(preserveFocus?: boolean): TPromise; + + /** + * Clears all received output. + */ + clear(): void; } export interface IOutputChannelRegistry { diff --git a/src/vs/workbench/parts/output/common/outputEditorInput.ts b/src/vs/workbench/parts/output/common/outputEditorInput.ts index f3b0b668c51..34299907076 100644 --- a/src/vs/workbench/parts/output/common/outputEditorInput.ts +++ b/src/vs/workbench/parts/output/common/outputEditorInput.ts @@ -27,7 +27,7 @@ export class OutputEditorInput extends StringEditorInput { private static instances: { [channel: string]: OutputEditorInput; } = Object.create(null); private outputSet: boolean; - private channel: string; + private channelId: string; private bufferedOutput: string; private toDispose: lifecycle.IDisposable[]; private appendOutputScheduler: RunOnceScheduler; @@ -47,15 +47,15 @@ export class OutputEditorInput extends StringEditorInput { } constructor( - channel: string, + channelId: string, @IInstantiationService instantiationService: IInstantiationService, @IOutputService private outputService: IOutputService, @IPanelService private panelService: IPanelService, @IEventService private eventService: IEventService ) { - super(nls.localize('output', "Output"), channel ? nls.localize('outputChannel', "for '{0}'", channel) : '', '', OUTPUT_MIME, true, instantiationService); + super(nls.localize('output', "Output"), channelId ? nls.localize('outputChannel', "for '{0}'", channelId) : '', '', OUTPUT_MIME, true, instantiationService); - this.channel = channel; + this.channelId = channelId; this.bufferedOutput = ''; this.toDispose = []; this.toDispose.push(this.outputService.onOutput(this.onOutputReceived, this)); @@ -75,7 +75,7 @@ export class OutputEditorInput extends StringEditorInput { private appendOutput(): void { if (this.value.length + this.bufferedOutput.length > MAX_OUTPUT_LENGTH) { - this.setValue(this.outputService.getOutput(this.channel)); + this.setValue(this.outputService.getOutputChannel(this.channelId).getContent()); } else { this.append(this.bufferedOutput); } @@ -86,7 +86,7 @@ export class OutputEditorInput extends StringEditorInput { } private onOutputReceived(e: IOutputEvent): void { - if (this.outputSet && e.channelId === this.channel) { + if (this.outputSet && e.channelId === this.channelId) { if (e.output) { this.bufferedOutput = strings.appendWithLimit(this.bufferedOutput, e.output, MAX_OUTPUT_LENGTH); this.scheduleOutputAppend(); @@ -98,7 +98,7 @@ export class OutputEditorInput extends StringEditorInput { private isVisible(): boolean { const panel = this.panelService.getActivePanel(); - return panel && panel.getId() === OUTPUT_PANEL_ID && this.outputService.getActiveChannel() === this.channel; + return panel && panel.getId() === OUTPUT_PANEL_ID && this.outputService.getActiveChannel() === this.channelId; } private scheduleOutputAppend(): void { @@ -118,7 +118,7 @@ export class OutputEditorInput extends StringEditorInput { return model; } - this.setValue(this.outputService.getOutput(this.channel)); + this.setValue(this.outputService.getOutputChannel(this.channelId).getContent()); this.outputSet = true; return model; @@ -126,13 +126,13 @@ export class OutputEditorInput extends StringEditorInput { } public getChannel(): string { - return this.channel; + return this.channelId; } public matches(otherInput: any): boolean { if (otherInput instanceof OutputEditorInput) { let otherOutputEditorInput = otherInput; - if (otherOutputEditorInput.getChannel() === this.channel) { + if (otherOutputEditorInput.getChannel() === this.channelId) { return super.matches(otherInput); } } diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 5cf65f7de7b..3f9368aa46a 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -62,9 +62,10 @@ export class OutputService implements IOutputService { public getOutputChannel(id: string): IOutputChannel { return { + getContent: () => this.getOutput(id), append: (output: string) => this.append(id, output), - clear: () => this.clearOutput(id), - show: (preserveFocus: boolean) => this.showOutput(id, preserveFocus) + show: (preserveFocus: boolean) => this.showOutput(id, preserveFocus), + clear: () => this.clearOutput(id) }; } @@ -88,7 +89,7 @@ export class OutputService implements IOutputService { this._onOutput.fire({ output: output, channelId: channelId }); } - public getOutput(channelId: string): string { + private getOutput(channelId: string): string { return this.receivedOutput[channelId] || ''; } From d4448628892b5906ee2e9c4320df4d943aae49eb Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 17:46:37 +0200 Subject: [PATCH 087/117] output: getActiveChannel -> getActiveChannelId, remove unnused getChannels --- .../parts/output/browser/outputActions.ts | 15 ++++++--------- .../workbench/parts/output/browser/outputPanel.ts | 4 ++-- src/vs/workbench/parts/output/common/output.ts | 7 +------ .../parts/output/common/outputEditorInput.ts | 2 +- .../parts/output/common/outputServices.ts | 6 +----- 5 files changed, 11 insertions(+), 23 deletions(-) diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index 6ce73e04638..6de56887c74 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -7,7 +7,6 @@ import {TPromise} from 'vs/base/common/winjs.base'; import nls = require('vs/nls'); import {Registry} from 'vs/platform/platform'; -import arrays = require('vs/base/common/arrays'); import {IAction, Action} from 'vs/base/common/actions'; import {EditorAction} from 'vs/editor/common/editorAction'; import {Behaviour} from 'vs/editor/common/editorActionEnablement'; @@ -39,7 +38,7 @@ export class ToggleOutputAction extends Action { return TPromise.as(null); } - return this.outputService.getOutputChannel(this.outputService.getActiveChannel()).show(); + return this.outputService.getOutputChannel(this.outputService.getActiveChannelId()).show(); } } @@ -53,7 +52,7 @@ export class ClearOutputAction extends Action { } public run(): TPromise { - this.outputService.getOutputChannel(this.outputService.getActiveChannel()).clear(); + this.outputService.getOutputChannel(this.outputService.getActiveChannelId()).clear(); this.panelService.getActivePanel().focus(); return TPromise.as(true); @@ -84,7 +83,7 @@ export class ClearOutputEditorAction extends EditorAction { } public run(): TPromise { - this.outputService.getOutputChannel(this.outputService.getActiveChannel()).clear(); + this.outputService.getOutputChannel(this.outputService.getActiveChannelId()).clear(); return TPromise.as(false); } } @@ -110,22 +109,20 @@ export class SwitchOutputActionItem extends SelectActionItem { action: IAction, @IOutputService private outputService: IOutputService ) { - super(null, action, SwitchOutputActionItem.getChannels(outputService), Math.max(0, SwitchOutputActionItem.getChannels(outputService).indexOf(outputService.getActiveChannel()))); + super(null, action, SwitchOutputActionItem.getChannels(outputService), Math.max(0, SwitchOutputActionItem.getChannels(outputService).indexOf(outputService.getActiveChannelId()))); this.toDispose.push(this.outputService.onOutputChannel(this.onOutputChannel, this)); this.toDispose.push(this.outputService.onActiveOutputChannel(this.onOutputChannel, this)); } private onOutputChannel(): void { let channels = SwitchOutputActionItem.getChannels(this.outputService); - let selected = Math.max(0, channels.indexOf(this.outputService.getActiveChannel())); + let selected = Math.max(0, channels.indexOf(this.outputService.getActiveChannelId())); this.setOptions(channels, selected); } private static getChannels(outputService: IOutputService): string[] { const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.id); - const usedChannels = outputService.getChannels(); - - return arrays.distinct(contributedChannels.concat(usedChannels)).sort(); // sort by name + return contributedChannels.sort(); // sort by name } } diff --git a/src/vs/workbench/parts/output/browser/outputPanel.ts b/src/vs/workbench/parts/output/browser/outputPanel.ts index ee9d0ab17de..172ee56f91c 100644 --- a/src/vs/workbench/parts/output/browser/outputPanel.ts +++ b/src/vs/workbench/parts/output/browser/outputPanel.ts @@ -85,7 +85,7 @@ export class OutputPanel extends StringEditor { options.rulers = []; options.folding = false; - let channel = this.outputService.getActiveChannel(); + let channel = this.outputService.getActiveChannelId(); options.ariaLabel = channel ? nls.localize('outputPanelWithInputAriaLabel', "{0}, Output panel", channel) : nls.localize('outputPanelAriaLabel', "Output panel"); return options; @@ -97,7 +97,7 @@ export class OutputPanel extends StringEditor { public create(parent: Builder): TPromise { return super.create(parent) - .then(() => this.setInput(OutputEditorInput.getInstance(this.instantiationService, this.outputService.getActiveChannel()), null)); + .then(() => this.setInput(OutputEditorInput.getInstance(this.instantiationService, this.outputService.getActiveChannelId()), null)); } public focus(): void { diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 8575d028e5a..ab02122d712 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -56,15 +56,10 @@ export interface IOutputService { getOutputChannel(id: string): IOutputChannel; - /** - * Returns all channels that received output in the current session. - */ - getChannels(): string[]; - /** * Returns the name of the currently opened channel. */ - getActiveChannel(): string; + getActiveChannelId(): string; /** * Allows to register on Output events diff --git a/src/vs/workbench/parts/output/common/outputEditorInput.ts b/src/vs/workbench/parts/output/common/outputEditorInput.ts index 34299907076..6719cc89aff 100644 --- a/src/vs/workbench/parts/output/common/outputEditorInput.ts +++ b/src/vs/workbench/parts/output/common/outputEditorInput.ts @@ -98,7 +98,7 @@ export class OutputEditorInput extends StringEditorInput { private isVisible(): boolean { const panel = this.panelService.getActivePanel(); - return panel && panel.getId() === OUTPUT_PANEL_ID && this.outputService.getActiveChannel() === this.channelId; + return panel && panel.getId() === OUTPUT_PANEL_ID && this.outputService.getActiveChannelId() === this.channelId; } private scheduleOutputAppend(): void { diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 3f9368aa46a..68d1c3ba386 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -93,11 +93,7 @@ export class OutputService implements IOutputService { return this.receivedOutput[channelId] || ''; } - public getChannels(): string[] { - return Object.keys(this.receivedOutput); - } - - public getActiveChannel(): string { + public getActiveChannelId(): string { return this.activeChannelId; } From 31473fe488b675d9bb86d3d53060e28c806af556 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 17:59:53 +0200 Subject: [PATCH 088/117] output: show labels in output channel dropdown --- .../workbench/parts/output/browser/outputActions.ts | 2 +- src/vs/workbench/parts/output/common/output.ts | 13 ++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index 6de56887c74..c942f13c46a 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -122,7 +122,7 @@ export class SwitchOutputActionItem extends SelectActionItem { } private static getChannels(outputService: IOutputService): string[] { - const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.id); + const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.displayName); return contributedChannels.sort(); // sort by name } } diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index ab02122d712..fd0d9d30671 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -54,6 +54,9 @@ export var IOutputService = createDecorator(OUTPUT_SERVICE_ID); export interface IOutputService { serviceId: ServiceIdentifier; + /** + * Given the channel id returns the output channel instance. + */ getOutputChannel(id: string): IOutputChannel; /** @@ -62,17 +65,17 @@ export interface IOutputService { getActiveChannelId(): string; /** - * Allows to register on Output events + * Allows to register on Output events. */ onOutput: Event; /** - * Allows to register on a new Output channel getting filled with output + * Allows to register on a new Output channel getting filled with output. */ onOutputChannel: Event; /** - * Allows to register on active output channel change + * Allows to register on active output channel change. */ onActiveOutputChannel: Event; } @@ -80,7 +83,7 @@ export interface IOutputService { export interface IOutputChannel { /** - * The received output content. + * Returns the received output content. */ getContent(): string; @@ -95,7 +98,7 @@ export interface IOutputChannel { show(preserveFocus?: boolean): TPromise; /** - * Clears all received output. + * Clears all received output for this channel. */ clear(): void; } From 283bfae1bb9b76179913f280c1bc9b90d15a97e1 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 13 Apr 2016 18:14:24 +0200 Subject: [PATCH 089/117] output: align extHostOutputService with new api --- .../api/node/extHostOutputService.ts | 30 ++++++------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 80ea3ddd111..a8ef4e7f918 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -7,7 +7,7 @@ import {TPromise} from 'vs/base/common/winjs.base'; import {onUnexpectedError} from 'vs/base/common/errors'; import {Remotable, IThreadService} from 'vs/platform/thread/common/thread'; -import {IOutputService, OUTPUT_EDITOR_INPUT_ID} from 'vs/workbench/parts/output/common/output'; +import {IOutputService, OUTPUT_EDITOR_INPUT_ID, IOutputChannel} from 'vs/workbench/parts/output/common/output'; import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService'; export class ExtHostOutputChannel implements vscode.OutputChannel { @@ -27,22 +27,21 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { dispose(): void { if (!this._disposed) { - this._proxy.clear(this._name).then(() => { - this._disposed = true; - }); + this._proxy.getOutputChannel(this._name).clear(); + this._disposed = true; } } append(value: string): void { - this._proxy.append(this._name, value); + this._proxy.getOutputChannel(this._name).append(value); } appendLine(value: string): void { - this.append(value + '\n'); + this._proxy.getOutputChannel(this._name).append(value + '\n'); } clear(): void { - this._proxy.clear(this._name); + this._proxy.getOutputChannel(this._name).clear(); } show(columnOrPreserveFocus?: vscode.ViewColumn | boolean, preserveFocus?: boolean): void { @@ -50,7 +49,7 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { preserveFocus = columnOrPreserveFocus; } - this._proxy.reveal(this._name, preserveFocus); + this._proxy.getOutputChannel(this._name).show(preserveFocus); } hide(): void { @@ -87,19 +86,8 @@ export class MainThreadOutputService { this._editorService = editorService; } - public append(channel: string, value: string): TPromise { - this._outputService.getOutputChannel(channel).append(value); - return undefined; - } - - public clear(channel: string): TPromise { - this._outputService.getOutputChannel(channel).clear(); - return undefined; - } - - public reveal(channel: string, preserveFocus: boolean): TPromise { - this._outputService.getOutputChannel(channel).show(preserveFocus); - return undefined; + public getOutputChannel(channelId): IOutputChannel { + return this._outputService.getOutputChannel(channelId); } public close(channel: string): TPromise { From fdff650521cf07ed904241b54448da1fe11e4534 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 13 Apr 2016 12:27:48 -0700 Subject: [PATCH 090/117] Move wiki to repo This commit does the following: - Migrates all pages from the wiki that are linked to - Fix links in all wiki pages and in ./README.md, ./CONTRIBUTING.md and ./test/README.md Fixes #2480 --- CONTRIBUTING.md | 9 +- README.md | 12 +- test/README.md | 2 +- wiki/README.md | 29 ++++ wiki/contributing/code-organization.md | 43 +++++ wiki/contributing/coding-guidelines.md | 51 ++++++ .../contributor-license-agreement.md | 8 + wiki/contributing/how-to-contribute.md | 150 ++++++++++++++++++ wiki/contributing/images/sourcemaps.png | Bin 0 -> 164159 bytes wiki/contributing/requested-extensions.md | 33 ++++ .../submitting-bugs-and-suggestions.md | 28 ++++ wiki/project-management/breaking-changes.md | 6 + .../project-management/development-process.md | 39 +++++ wiki/project-management/issue-tracking.md | 67 ++++++++ wiki/project-management/iteration-plans.md | 26 +++ wiki/project-management/previous-releases.md | 17 ++ wiki/project-management/related-projects.md | 57 +++++++ wiki/project-management/roadmap.md | 42 +++++ 18 files changed, 607 insertions(+), 12 deletions(-) create mode 100644 wiki/README.md create mode 100644 wiki/contributing/code-organization.md create mode 100644 wiki/contributing/coding-guidelines.md create mode 100644 wiki/contributing/contributor-license-agreement.md create mode 100644 wiki/contributing/how-to-contribute.md create mode 100644 wiki/contributing/images/sourcemaps.png create mode 100644 wiki/contributing/requested-extensions.md create mode 100644 wiki/contributing/submitting-bugs-and-suggestions.md create mode 100644 wiki/project-management/breaking-changes.md create mode 100644 wiki/project-management/development-process.md create mode 100644 wiki/project-management/issue-tracking.md create mode 100644 wiki/project-management/iteration-plans.md create mode 100644 wiki/project-management/previous-releases.md create mode 100644 wiki/project-management/related-projects.md create mode 100644 wiki/project-management/roadmap.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9bd2e9e0e5d..91502acd7ce 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,9 +3,9 @@ ### Before Submitting an Issue First, please do a search in open issues to see if the issue or feature request has already been filed. If there is an issue add your comments to this issue. -The Code project is distributed across multiple repositories, try to file the issue against the correct repository [Related Projects](https://github.com/Microsoft/vscode/wiki/Related-Projects). +The Code project is distributed across multiple repositories, try to file the issue against the correct repository [Related Projects](https://github.com/Microsoft/vscode/tree/master/wiki/project-management/related-projects.md). -If your issue is a question then please ask the question on [Stack Overflow](https://stackoverflow.com/questions/tagged/vscode) using the tag `vscode`. +If your issue is a question then please ask the question on [Stack Overflow](https://stackoverflow.com/questions/tagged/vscode) using the tag `vscode`. ## Writing Good Bug Reports and Feature Requests @@ -19,9 +19,8 @@ The more information you can provide, the more likely someone will be successful * Code that demonstrates the issue * Version of VS Code * Errors in the Dev Tools Console (Help | Toggle Developer Tools) -* When you have extensions installed, can you reproduce the issue when starting vscode without extensions by using the `--disable-extensions` command line argument? +* When you have extensions installed, can you reproduce the issue when starting vscode without extensions by using the `--disable-extensions` command line argument? ## Contributing Fixes If you are interested in fixing issues and contributing directly to the code base, -please see the document [How to Contribute](https://github.com/Microsoft/vscode/wiki/How-to-Contribute). - +please see the document [How to Contribute](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/how-to-contribute.md). diff --git a/README.md b/README.md index 4c61e1c31da..9a2a3934a08 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,12 @@ The [`vscode`](https://github.com/microsoft/vscode) repository is where we do de ## Contributing If you are interested in fixing issues and contributing directly to the code base, -please see the document [How to Contribute](https://github.com/Microsoft/vscode/wiki/How-to-Contribute), which covers the following: +please see the document [How to Contribute](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/how-to-contribute.md), which covers the following: -* [How to build and run from source](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#build-and-run-from-source) -* [The development workflow, including debugging and running tests](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#development-workflow) -* [Coding Guidelines](https://github.com/Microsoft/vscode/wiki/Coding-Guidelines) -* [Submitting pull requests](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#pull-requests) +* [How to build and run from source](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/how-to-contribute.md#build-and-run-from-source) +* [The development workflow, including debugging and running tests](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/how-to-contribute.md#development-workflow) +* [Coding Guidelines](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/coding-guidelines.md) +* [Submitting pull requests](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/how-to-contribute.md#pull-requests) ## Feedback @@ -35,7 +35,7 @@ please see the document [How to Contribute](https://github.com/Microsoft/vscode/ ## Related Projects Many of the core components and extensions to Code live in their own repositories on GitHub. For example, the [node debug adapter](https://github.com/microsoft/vscode-node-debug) and the [mono debug adapter](https://github.com/microsoft/vscode-mono-debug) -For a complete list, please see the [Related Projects](https://github.com/Microsoft/vscode/wiki/Related-Projects) page on our wiki. +For a complete list, please see the [Related Projects](https://github.com/Microsoft/vscode/tree/master/wiki/project-management/related-projects.md) page on our wiki. ## License [MIT](LICENSE.txt) diff --git a/test/README.md b/test/README.md index 24bf6ff037b..eb5b1557a05 100644 --- a/test/README.md +++ b/test/README.md @@ -2,7 +2,7 @@ ## Run -The best way to run the Code tests is from within VS Code. Simply press `CMD+Shift+T` (`Ctrl+Shift+T` on Windows) to launch the tests. To make development changes to unit tests you need to be running `gulp`. See [Development Workflow](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#incremental-build) for more details. +The best way to run the Code tests is from within VS Code. Simply press `CMD+Shift+T` (`Ctrl+Shift+T` on Windows) to launch the tests. To make development changes to unit tests you need to be running `gulp`. See [Development Workflow](https://github.com/Microsoft/vscode/tree/master/wiki/contributing/how-to-contribute.md#incremental-build) for more details. If you wish to run the tests from a terminal, from the `vscode` folder run: diff --git a/wiki/README.md b/wiki/README.md new file mode 100644 index 00000000000..e12718d666b --- /dev/null +++ b/wiki/README.md @@ -0,0 +1,29 @@ +# Welcome + +Welcome to the Code Wiki. These pages are primarily intended for those who wish to contribute to the Code project by submitting bug reports, suggesting new features, building extensions, commenting on new ideas, or even by submitting pull requests. + +Please refer to the sidebar (on the right) for details on Project Management, Contributing to Code, and Documentation. + +If you are looking for more information on using VS Code, please visit our [the Visual Studio Code portal](http://code.visualstudio.com) and follow us on [Twitter](https://twitter.com/code)! + +## Table of contents + +- Contributing + - [How to Contribute](contributing/how-to-contribute.md) + - [Submitting Bugs and Suggestions](contributing/submitting-bugs-and-suggestinos.md) + - [Code Organization](contributing/code-organization.md) + - [Coding Guidelines](contributing/coding-guidelines.md) + - [Contributor License Agreement](contributing/contributor-license-agreement.md) + - [Requested Extensions](contributing/requested-extensions.md) +- Project Management + - [Roadmap](project-management/roadmap.md) + - [Iteration Plans](project-management/iteration-plans.md) + - [Breaking Changes](project-management/breaking-changes.md) + - [Development Process](project-management/development-process.md) + - [Issue Tracking](project-management/issue-tracking.md) + - [Previous Releases](project-management/previous-releases.md) + - [Related Projects](project-management/related-projects.md) +- [Documentation](https://code.visualstudio.com/docs) + - [Extensions](https://code.visualstudio.com/docs/extensions/overview) + - [API](https://code.visualstudio.com/docs/extensionAPI/overview) + - [Documetnation repository](https://github.com/microsoft/vscode-docs) \ No newline at end of file diff --git a/wiki/contributing/code-organization.md b/wiki/contributing/code-organization.md new file mode 100644 index 00000000000..8ce67ee17dc --- /dev/null +++ b/wiki/contributing/code-organization.md @@ -0,0 +1,43 @@ +# Code Organization + +Code consists a layered and modular `core` that can be extended using extensions. Extensions are run in a separate process refered to as the +`extension host.` Extensions are implemented by utilizing the [extension API](https://code.visualstudio.com/docs/extensions/overview). + +# Layers + +The `core` is partitioned into the following layers: +- `base`: Provides general utilities and user interface building blocks +- `platform`: Defines service injection support and the base services for Code +- `editor`: The "Monaco" editor is available as a separate downloadable component +- `languages`: For historical reasons, not all languages are implemented as extensions (yet) - as Code evolves we will migrate more languages to towards extensions +- `workbench`: Hosts the "Monaco" editor and provides the framework for "viewlets" like the Explorer, Status Bar, or Menu Bar, leveraging [Electron](http://electron.atom.io/) to implement the Code desktop application. + +# Target Environments +The `core` of Code is fully implemented in [TypeScript](https://github.com/microsoft/typescript). Inside each layer the code is organized by the target runtime environment. This ensures that only the runtime specific APIs are used. In the code we distinguish between the following target environments: +- `common`: Source code that only requires basic JavaScript APIs and run in all the other target environments +- `browser`: Source code that requires the `browser` APIs like access to the DOM + - may use code from: `common` +- `node`: Source code that requires [`nodejs`](https://nodejs.org) APIs + - may use code from: `common` +- `electron-browser`: Source code that requires the [Electron renderer-process](https://github.com/atom/electron/tree/master/docs#modules-for-the-renderer-process-web-page) APIs + - may use code from: `common`, `browser`, `node` +- `electron-main`: Source code that requires the [Electron main-process](https://github.com/atom/electron/tree/master/docs#modules-for-the-main-process) APIs + - may use code from: `common`, `node` + +# Dependency Injection + +The code is organised around services of which most are defined in the `platform` layer. Services get to its clients via `constructor injection`. + +A service definition is two parts: (1) the interface of a service, and (2) a service identifier - the latter is required because TypeScript doesn't use nominal but structural typing. A service identifier is a decoration (as proposed for ES7) and should have the same name as the service interface. + +Declaring a service dependency happens by adding a corresponding decoration to a constructor argument. In the snippet below `@IModelService` is the service identifier decoration and `IModelService` is the (optional) type annotation for this argument. + +```javascript +class Client { + constructor(@IModelService modelService: IModelService) { + // use modelService + } +} +``` + +Use the instantiation service to create instances for service consumers, like so `instantiationService.createInstance(Client)`. Usually, this is done for you when being registered as a contribution, like a Viewlet or Language. \ No newline at end of file diff --git a/wiki/contributing/coding-guidelines.md b/wiki/contributing/coding-guidelines.md new file mode 100644 index 00000000000..1bcac5ffa0d --- /dev/null +++ b/wiki/contributing/coding-guidelines.md @@ -0,0 +1,51 @@ +# Coding Guidelines + +## Git + +We prefer a **rebase workflow** and occasional **feature branches**. Most work happens directly on the `master` branch. For that reason, we recommend setting the `pull.rebase` setting to true. + +``` +git config --global pull.rebase true +``` + +## Indentation +We use tabs, not spaces. + +## Names +* Use PascalCase for `type` names +* Use PascalCase for `enum` values +* Use camelCase for `function` and `method` names +* Use camelCase for `property` names and `local variables` +* Use whole words in names when possible + +## Types +* Do not export `types` or `functions` unless you need to share it across multiple components +* Do not introduce new `types` or `values` to the global namespace + +## Comments +* Use JSDoc style comments for `functions`, `interfaces`, `enums`, and `classes` + +## Strings +* Use "double quotes" for strings shown to the user that need to be externalized (localized) +* Use 'single quotes' otherwise +* All strings visible to the user need to be externalized + +## Style +* Use arrow functions `=>` over anonymous function expressions +* Only surround arrow function parameters when necessary. For example, `(x) => x + x` is wrong but the following are correct: + +``` javascript + x => x + x + (x,y) => x + y + (x: T, y: T) => x === y +``` + +* Always surround loop and conditional bodies with curly braces +* Open curly braces always go on the same line as whatever necessitates them +* Parenthesized constructs should have no surrounding whitespace. A single space follows commas, colons, and semicolons in those constructs. For example: + +``` javascript + for (var i = 0, n = str.length; i < 10; i++) { } + if (x < 10) { } + function f(x: number, y: string): void { } +``` \ No newline at end of file diff --git a/wiki/contributing/contributor-license-agreement.md b/wiki/contributing/contributor-license-agreement.md new file mode 100644 index 00000000000..29410312fb8 --- /dev/null +++ b/wiki/contributing/contributor-license-agreement.md @@ -0,0 +1,8 @@ +# Contributor License Agreement +You must sign a Contribution License Agreement (CLA) before your PR will be merged. This a one-time requirement for Microsoft projects in GitHub. You can read more about [Contribution License Agreements (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) on Wikipedia. + +However, you don't have to do this up-front. You can simply clone, fork, and submit your pull-request as usual. + +When your pull-request is created, it is classified by a CLA bot. If the change is trivial (i.e. you just fixed a typo) then the PR is labelled with `cla-not-required`. Otherwise, it's classified as `cla-required`. In that case, the system will also tell you how you can sign the CLA. Once you have signed a CLA, the current and all future pull-requests will be labelled as `cla-signed`. + +Signing the CLA might sound scary but it's actually very simple and can be done in less than a minute. \ No newline at end of file diff --git a/wiki/contributing/how-to-contribute.md b/wiki/contributing/how-to-contribute.md new file mode 100644 index 00000000000..785db52fcce --- /dev/null +++ b/wiki/contributing/how-to-contribute.md @@ -0,0 +1,150 @@ +# Contributing to Code + +There are many ways to contribute to the Code project: logging bugs, submitting pull requests, reporting issues, and creating suggestions. + +After cloning and building the repo, check out the [issues list](https://github.com/Microsoft/vscode/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue). Issues labeled [`effort easy`](https://github.com/Microsoft/vscode/issues?q=is%3Aopen+is%3Aissue+label%3A%22effort+easy%22) are good candidates to pick up if you are in the code for the first time. + +## Build and Run From Source + +If you want to understand how Code works or want to debug an issue, you'll want to get the source, build it, and run the tool locally. + +### Installing Prerequisites + +You'll need [Node.JS](https://nodejs.org/en/), at least `v4`. + +We suggest to use `npm@2`, you can install it with `npm install -g npm@2`. + +Code includes node module dependencies that require native compilation. To ensure the compilation is picking up the right version of header files from the Electron Shell, we have our own script to run the installation via `npm`. + +For native compilation, you will need [Python](https://www.python.org/downloads/) (version `v2.7` recommended, `v3.x.x` is __*not*__ supported), as well as a C/C++ compiler tool chain. + +**Windows:** +* In addition to [Python v2.7](https://www.python.org/downloads/release/python-279/), make sure you have a PYTHON environment variable set to `drive:\path\to\python.exe`, not to a folder +* [Visual Studio 2013 for Windows Desktop](https://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx) or [Visual Studio 2015](https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx), make sure to select the option to install all C++ tools and the Windows SDK + +**OS X** +* Command line developer tools +* Python should be installed already +* [XCode](https://developer.apple.com/xcode/downloads/) and the Command Line Tools (XCode -> Preferences -> Downloads), which will install `gcc` and the related toolchain containing `make` + +**Linux** +* Python v2.7 +* `make` +* A proper C/C++11 compiler tool chain, for example [GCC](https://gcc.gnu.org) +* [native-keymap](https://www.npmjs.com/package/native-keymap) needs `libx11-dev`, run: `sudo apt-get install libx11-dev` +* Building deb and rpm packages requires `fakeroot`, run: `sudo apt-get install fakeroot` + +After you have these tools installed, run the following commands to check out Code and install dependencies: + +**OS X** + + git clone https://github.com/microsoft/vscode + cd vscode + ./scripts/npm.sh install + +**Windows** + + git clone https://github.com/microsoft/vscode + cd vscode + scripts\npm install + +**Linux** + + git clone https://github.com/microsoft/vscode + cd vscode + ./scripts/npm.sh install --arch=x64 + # for 32bit Linux + #./scripts/npm.sh install --arch=ia32 + +**Note:** For more information on how to install NPM modules globally on UNIX systems without resorting to `sudo`, refer to [this guide](http://www.johnpapa.net/how-to-use-npm-global-without-sudo-on-osx/) . + +## Development Workflow + +### Incremental Build +From a terminal, where you have cloned the `vscode` repository, execute the following command to run the TypeScript incremental builder: + +```bash +npm run watch +``` + +It will do an initial full build and then watch for file changes, compiling those changes incrementally, enabling a fast, iterative coding experience. + +**Tip!** Linux users may hit a ENOSPC error when running `npm run watch`, to get around this follow instructions in the [Linux FAQ](https://code.visualstudio.com/docs/supporting/faq#_linux-faq). + +**Tip!** Open VS Code on the folder where you have cloned the `vscode` repository and press CMD+SHIFT+B (CTRL+SHIFT+B on Windows, Linux) to start the builder. To view the build output open the Output stream by pressing CMD+SHIFT+U. + +### Errors and Warnings +Errors and warnings will show in the console while developing Code. If you use VS Code to develop Code, errors and warnings are shown in the status bar at the bottom left of the editor. You can view the error list using `View | Errors and Warnings` or pressing CMD+P and then !. + +**Tip!** You don't need to stop and restart the development version of Code after each change. You can just execute `Reload Window` from the command palette. We like to assign the keyboard shortcut CMD+R (CTRL+R on Windows, Linux) to this command. + +### Validate your changes +To test the changes you launch a development version of VS Code on the workspace `vscode`, which you are currently editing. + +OS X and Linux + + ./scripts/code.sh + +Windows + + .\scripts\code.bat + +You can identify the development version of Code by the Electron icon in the Dock or Taskbar. + +**Tip!** If you receive an error stating that the app is not a valid Electron app, it probably means you didn't run `npm run watch` first. + +### Debugging +Code has a multi-process architecture and your code is executed in different processes. + +The **render** process runs the UI code inside the Shell window. To debug code running in the **render** you can either use VS Code or the Chrome Developer Tools. + +#### Using VSCode +* Install the [Debugger for Chrome](https://marketplace.visualstudio.com/items/msjsdiag.debugger-for-chrome) extension. This extension will let you attach to and debug client side code running in Chrome. +* Launch the development version of Code with the following command line option: + +OSX and Linux +``` bash +./scripts/code.sh --remote-debugging-port=9222 +``` +Windows +``` bash +scripts\code --remote-debugging-port=9222 +``` + +* Choose the `Attach to VSCode` launch configuration from the launch dropdown in the Debug viewlet and press `F5`. + + +#### Using the Chrome Developer Tools + +* Run the `Developer: Toggle Developer Tools` command from the Command Palette in your development instance of Code to launch the Chrome tools. +* It's also possible to debug the released versions of Code, since the sources link to sourcemaps hosted online. + +[![](images/sourcemaps.png)](images/sourcemaps.png) + +The **extension host** process runs code implemented by a plugin. To debug extensions (including those packaged with Code) which run in the extension host process, you can use VS Code itself. Switch to the Debug viewlet, choose the `Attach to Extension Host` configuration, and press F5. + +### Unit Testing +Press CMD+SHIFT+T (CTRL+SHIFT+T on Windows) to start the unit tests or run the tests directly from a terminal by running `./scripts/test.sh` from the `vscode` folder (`scripts\test` on Windows). The [test README](https://github.com/Microsoft/vscode/blob/master/test/README.md) has complete details on how to run and debug tests, as well as how to produce coverage reports. + +### Linting +We use [tslint](https://github.com/palantir/tslint) for linting our sources. You can run tslint across the sources by calling `gulp tslint` from a terminal or command prompt. You can also run `gulp tslint` as a Code task by pressing CMD+P (CTRL+P on Windows) and entering `task tslint`. Warnings from tslint show up in the `Errors and Warnings` quick box and you can navigate to them from inside Code. + +To lint the source as you make changes you can install the [tslint extension](https://marketplace.visualstudio.com/items/eg2.tslint). + +## Work Branches +Even if you have push rights on the Microsoft/vscode repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your personal workflow cruft out of sight. + +## Pull Requests +Before we can accept a pull request from you, you'll need to sign a [Contributor License Agreement (CLA)](contributor-license-agreement.md). It is an automated process and you only need to do it once. The project [README.md](https://github.com/Microsoft/vscode/blob/master/README.md) details how to clone, build, run, debug and test Code. +To enable us to quickly review and accept your pull requests, always create one pull request per issue. Never merge multiple requests in one. Be sure to follow our [Coding Guidelines](coding-guidelines.md) and keep code changes as small as possible. Avoid pure formatting changes to code that has not been modified otherwise. And, if possible, cover your changes with tests. + +## Where to Contribute + +Check out the [issues list](https://github.com/Microsoft/vscode/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue). Issues labeled [`effort easy`](https://github.com/Microsoft/vscode/issues?q=is%3Aopen+is%3Aissue+label%3A%22effort+easy%22) are good candidates to pick up if you are in the code for the first time. + +## Suggestions +We're also interested in your feedback for the future of Code. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly. + +## Discussion Etiquette + +In order to keep the conversation clear and transparent, please limit discussion to English and keep things on topic with the issue. Be considerate to others and try to be courteous and professional at all times. \ No newline at end of file diff --git a/wiki/contributing/images/sourcemaps.png b/wiki/contributing/images/sourcemaps.png new file mode 100644 index 0000000000000000000000000000000000000000..1d1b27c0252d11435c95854f52cbf2b5c6aeedc1 GIT binary patch literal 164159 zcmd3OWm{Y8)-Eo^rMQ$*tY~oyQoOjkySrPF7Fx7e(BSUw?(Xgm!QJ6x?Y;K7-m};H z15U2wLuN8(o;jYO_qa!XDac8ny(4-D1qFpBB`K-|1qFKqd2t~jK#qt#calOueSne@ z6;| zS1e91Zq1t+IphZfn8Rr3rRsTuNzBlxfN6~w@is5;G1v0Jz?tOl8Ko-R5d|KkomD8MZY z&QoZ{lTH=!yQM|Jg#Gh2cVmR&UG|E9cWbHkX)^g&Hz@x@3IR|!1=r|4rmjZxM-4E~ z4`$B){K_}sj47V8_`$+b8RJ6Sc1C`rf5=gY5VHU`(p${kf&S|o{a5ngjk}N(lm8NW zMj%cBlANR1LH22XMiy_3>Ev0Jh4P)OF~vXbE&~RK76q}1VToZ*TjdYQ#MFVcWsPD9 zS2#V}KQ{66mw+jUBI)c1qjs_Poji<%0ts=eM(uPq|J#o1zi^Qi<1d-0g z9B4}|#63$-)!76Y|MRvyX%u4Q9HbVQkW+g7qK1lt2n+n;x%hhhx)=Uy(;ym_fsKh2 z7o@Xx40l|L9LGjnfDWG}*juTX+9YPGfM<(WTdouJUrHEIB=SKavO=)u_q3TKct`-D z>t~H>NdrI6@7@z>MKFGDrV=Gc_S7~B;Xn|L2s}F|%7P9eZ zG@Q;wF>(8Bnc|xC4=IUJVOsRhs(ZH`z<-m7ieRq00l$}4Q;RfKT)N4Pd*V^F zZJ)&F>+S?|SU3W7@?S%>w|y`U`(K38ONA*JGLyn6zk51#z2n6?m|0+2)y8>iB44bX z<73JF>$PrEc3rm-w4zSfIX!*zNj;#sxEPGfp&L^dwnS6b|6j`!>V@bndOmaA>ft@* z{Pb+>Wb>{Z)4G)Xu9AG;D|pyTpqJ_d>Ct*Uwyl{J(8$aRAPw9r*9mk}mrp=sWg4x6 zS+uX~{qKt|V$v%1E3tjDw{4`qQ!UHiFAi@i%BK(6D3k#gRJK1_=|&yKxII2so=K^f zkKiY%N$i=HbX};5yI#AfYO|gcgJ$*<|H}ZNsTKYp-GfV-rl(`QV=RYTc7Nrn^{2@= z%})bOmlnu%ZFQp_VqB<+|Z17~Jt z&Z?Jb@CZ;)Y;Hb3`z&1AI&i}bO`xDN{nOvD1Z-il5TLRo$+D!3ayx8vGy}YEd?+Em ztD0m8+*36l*G+brWo>Oz+LKdf1X==8sz%Nej>_gm{ne z3FomC`fmc&PU*@M25Z6xIdc!G5;{YEgw)nA9x%Y5|094xbes?=I$hntgZsgEihPC_ z{D~PQ1n?mgcDF>DTkJ5dt}MTWA@)lx%`|HQtJm}hXLD&Cv-b??;9y0$K5T!V|HeYQ zet7pp!xz*OzOIEvV${k?zlc$gD?%jOu%WyjV$PY{T!a;Zu?;?fl^%?-hHU$B+5k_4 z*nWbs=aAR&sMC@)_8cm($EEN6B=CbkPJ;feM$$hmQ4u*hUE&qw#8J;Dq5Jr&N@v`Y z1~rFf`1VYnM8)mzP%3zZUJPns;N=R8+b**)8GjoG6>pN!AyAL$@i<+9;DbYyV93lob$vbi050>()=ue&Hn6@v7hMSoz!4sp7 z-zoclms~A!n;#+>XKNdjtWAYcnO_JdEnjT@VXlPL7JCc)`c+g|PcHI6AEl=6{INdE zIN1Ky$0{!V-xgC<|vpa=|~Dx z-ptKDVai*x9#%;rNth6X)U6n|)x7dan=dJw*YL738yC?}v(CjTCLNj9 z563>=q`2jL>VDnEC~&@{MXj}{TUNZs6Az|f|48C0N78#i?hkd^O8%2zobCAbn9YIY z{@ukMBa4^>>}}UwKPFN5`8j5Aj(z7Z*zc5wSOg+~@rv{Tz6cBq|6jfo-U^gOdDZst z)FRzoSVUxzzK7nyV^_bTJ_v-GFWjtKCb0f1_xb*<&d5W%#`wq+|5N ztdE$!kL0O*tt62MBK%9*aaAOIsM;u`uFbHQdpxiaQx-y^D!6VtcJPO5`0lL|-Z}&S zjwPxoP=Fpzq6iiuid2`Npx5#Ne-+gfv?$QOb@4L^G;n=CcmFyn(q%TW=wPrWFDFv% zRJx7ZwU@|WpNK9J-Bp3OhLxi{&lEs+MMX_IKfFA`%lUew^C)*l-0C_c(|}2khTg0} z)_$SCfT&0DltauHGar_F))iSHL5}=Qp&WJ0`0N-x)0xu~aC}oXTTA(aUWxMq`{$8a zu8=B)?;}J7)8at{u!n2PN4%Qxf5#Nsd^k6Tv z&Q&AM_qo!yR_))gTkY2_c*A{;IcFkSy6wihev=FIk1+eaH+4jB67Q+%WoXOZ8=s=`2_1LFJ2`s z14l>mxmMR;gj_U;v(5uZBmwg}tavwa@e*=NRJ{wD<}5M1VdOA6f6F z!kS)5{F7)5u-lbdByage8)IMKR=K%#%Lt`9izb4`QmOm*b`l$Pvuyx2lr5Gh@NjZ7Y`daK)>Ea2pvDBRPK7hy%<9oMye zWSVq)-^j1*KTlK32kRrjQWyde-DrFna?e_EgUusk*+Ox z_AS9D{w*C?ip@{zoUMY}2zLp7GIEqsK7 zu-L!1ORR-)b47~KT5IACd)G`cN;yx!WE^(`eh)bYmx0S)xn{i!0!oRB%p+l_D zQ0o9cPDDR_XH400$*#%L;%M8WP|k?r%>(=XAF#HpDOhTy(0Y%L^k1&hfW9#LKGir} zktsi4Nx{Fy1UPM}>rMb@A)^7h^!OjLPSFT>bMP4uV7<@?f8xBA^cF=(OwjS8EMxwp zV+MpG{K3mu`yfN)jUeBCQ*J^3a?kXPf=DgE0*96r6mZ{0Fn6Ur^5)HE*P7E-q3-3< zK=q%zSO5o8KtCY1w8>}+SshI(DL?Ug5dF|%8vbKD{wT z576sn`bl~BRS%M(&=UD1B)2E zGIG~HZ3gKazu_n5#cq;f$+j+8lT6{#I7J4c$HwMai0dN!VTbZu=Av~j`VZf?O{Sn5yBmq zJZZWoT~j*j^eJoxbI->Ge9qt%J|5*#&YK1O;%spKANCb(oYOW#W|ijjd3xyjGDm_l zx4Udh8J{fdBZe-Kdaf^A&JGtPHP*@DqpEbIH=M%LQK*Wj*?PaYa4Xji_%+o zW(43lQFNdEGgd3C^T+IH6@TrR$I3-$ZqasY#=X)$t!+It1Zt>%zyedf;ZGTt_iFaC zvE81XBbe_*HXi^kI+JH5;?eyg(X@8_J~H+1a$X?;4qO9{`f$Z+)eUG0;(+nL};F+0h-?ZsLeIVYt~D(e11i{&ZBbM*Pc zqN8daP|dUoy;n)DGQXxy=75ihn?;V}NQQ68y)TKBPvPwv*%93Au%No1ys~}ml4?1D zbbFh|fjFUS!z|dur=(Q>;gfGO_l++1ag}+F9eYOt=ohXrUvycg^c#YxTmR1*M(*e~ z{nSS$61Rs7EJ`@m>FGZv*3eTooNHm;BiR35DlH03!g*6ev%jp2rzfkGYXd%7QBv>v z`EGi6S4q0j7tdSn88kFunG=IV)^1FbNa1nNWa0~$zTmFU*@BQf_`yEB`)>JYBh3>> zq1e(qXY>VEkjeHZv@X%sL7(Y;`%NLi#W!NnJ~N6wN9=OBCj@4GCywYQl=3!C4D_XH zxe(Btq!7THn%e&yM~}o0eq^!#qOW_~u-%J+8skI}&!a*1KQe8@q&*J}PA~A%^>WQs zmNR8#1kkIdA6pFPhF{Orl;qRInuFu*TRA*01x4^PuO-#6-B(>2^v;K^F61906|Ebn;z1?~SX|Ud!!!1KN@qBlUD@r&b z2J(CF?4K32c9do_q#RZUs?N;AQUQl6Rs_m#Kj@s(C#uChb?LRj+DxtnL=)V(x_*<} zr81W4vnr8W4u$2B^G2rlb)Z+;ny6S#y7L^9uN*J-?=nLH8hN3laUkFHpmPkd4UB1{ zMt^xS!5FlPUOb9GFj|qg(=MyIj9xseo21;IoPyFk8E$~WcNjy||M&R<$Tc>rRXE?L zp`2Q|k9KIK%@>uE5sJWtp7NH+l5_E%tqb_1itXWUVx?}BIqLJ_Z4&MOJEQm?MR0}^*2LrYrOrRbGQ3vN zV^wj|q;$Y0mD4a8uyTpI1mhjOEZYPX;U_3tVx?0iYF|z2X^8e)%I^Vsm4N?*2q5q$ zKOFxB{eFy?oqzV z{yt^S#^=?lW0d+)xFX(wfq?-KJmSctZ~l(LGK$f+r>BppRgrpHL!aEH;)P{nWm14% zYeOmkI483gm~K1PB4xSHtmVLju|{I$tg@NOz9~cXljiDfr~kOLzw|KRBR04HEB{v! z5yMIypHTxW*@Po2wc_{ezq-b}8vRlloK-`As@>$G57t=H#X1&Z zGSQjqlGfA*6g0)DU8$%K)l}9L$6H@1Mg2d!4FS48n6H|!swO4fw6yR~BpMqT!N|mn zet}fya4=fyQI}Qo`YjP^lvTYq=?1%RXb*xqoJV{Iy-Bbg zvqsAo;13|rClp5V#1FP4tJyZj#zxjK+FBeb>XpmPURe^h*c=4@78{V{W2MGfs!3K) zQP_=B)1Qj`tUO&rD#sRpO%+W(UnzQG9g!mcn*HAK@8T&@s1SQ#Xy~h`C|qDrkaX>8 zl~uUeoaG1!#MRN_!>P1KP2rlzj8(|s<2I6*#2oPqE9oZ`da*JZTUHlTs`Istl{`&D zTd5#$Fq*Cz6;U1y)({Op{^jG+t0a9RlY|N}X&DilYRFOJ-tpT7|Fvm2lG4)Mi`C|e z)n>Ar-0x>6%5 z0%Y~;e$BYfBXHk>AsaJopMhiGk67&}+YuI|HQmlqXM@PqmKqC*r zJ%n6pb6(%S*L7aEACai(KqqeEF*xVLizHz&>o@6rEh0()AgPGn6{2y99~~`uj=a*; zHx+qyXMtQvdW~A?Q!VDYQT)Sy;}4?9$E(fiKApTC=NT6HirL}>>=u~G?3UOQZa_xu zJZol3N?7)7VP>~ESFB2w?{H4e&c!Puyb(zvy%a3=Yy2~%+W4*BcTD(c)Dpgs9@j#> zJ^5Uzb_gPw2UNa%y4%eOr0=y*VF)Ym_U!DKxS1&u!eTW;+fI6mMJe83^BC&^LET;y znXPqQ)zY2?Az~(Rq*I=T2X`p~cZ+253T2K)hO4k6!j4L;5qIs)0kiW7ih4uWQ%d5M zk9iNvG;`*EHz5>EV8ZYiyD$Wwp+d6H-yZX1Qz|^K%pBGEMzi2pCxD-uu6Q^&-d9#u zc3H-#TfDys)B5m4W6KlcZgi+d>2+uQv&gX%NaEQW8g}&x0e|;*(?Vw7X)tUey(=Qn zx%QG8-WV>gw(A`;_3xZ1VovVEyR&XvJD>-JlW8&OHmSIz+A$t1#+L0eEeo-McM6m< zLW9yWPgX!4!CdOP@@IY_@A>UL+w_ZGVRyfvKW)0^{dSy zXtNh@gvKi%M|6EAvvZJ@phiP(8{9g z{hl+9mkN(L07bB!1wk4N2(`p;bITm&KZge;+jPab+Y1*+Yq|XzF=`Q<(xgEY5!^9c zP38J>G_PB>{qCKS`gvPEh_jyWvoX zJKQ;&L9bxCKYV`!s7rHv;l-b7;wNv+WqKYPw_U>~g3sNm`~7kCxB+L%WUci)>j^iY zCimqK^2j0wck8xBPOe`KGq>xM56~o)v+d?ydH`S$Zbnd6+n?|22uG*-C4#_N4H}B&mk}id7BbS`+Yj&}$%Oj>V%u7#o?K z;3}EtJIGoasn)NpSKE2`?(6rqVNa_N+W zPGyZor(6v(a!K>F1UYINny}q8_8|Roy;fGInY8XvUg>V~&-0+}{lJgA5siu`*$V z4vDGXOkbye>!}NxLn$%};(qb}`X>1c! z|3vWn;&p<|&S~bv?WQiL%W)T^^Ye}AT^~KUZ=e_62WEOg9wf(NeT{0LJc|-`vvCSk z5o($KS*Wj!nu&KKY#Q^IiZVn?*mDf@3<)fWip0z^qEMtafn-UC^<#t|vC9~fIQcPN z1E*jSF^o^=*EbLQB|cJ8;wYQ7h3)r8G0rZ-4ov2TFznF!Jzw;98J;avy4as9W=@dZ z7VVrbG8Um#$GBUE!+-elGm9KEo zXH(YFzA43g4TPzAgxb_0Nr@p7t-hru=waZPe?gWz5NZGzoD*T%*xYbX>O9IyHPMKo zAEuONFGR@I=BG>W?U7AE%Qo)IH@h}mt|V10~d3hU7?ldE)PM*%!qeSlf9~VmKsy zEp+x9Z0gL5gLy|=C0r8jAbHR|Do}E4nsVAo8M~Lm9A*Yd?diU^iD zG|Aky$J-!0!R21iM}M1M8-}msHN2O|0*|A?=4&aTaMF03&zFR2FJqoXZVq8jUwn1s zHKKpFzi|s5|FmKyx9%xb_+wONUrJ)va2=)Few!dcP@oN&u=YQu@ za|jCelk(BA&B-@6xXpL|^4!KJyzFAu`h?XN=_Oh6b*lWm$Kgh2(2s68?Rc|sPy`~m z59Y~oJ%*2n9)sWYq(ny0w#88lkwsm4s?)o5zbD4IGTo!kdGDc7@R@KCLj*1dD49IP zWF};IM+>C)Q;puSXUj!4@h+ck-`5CyP>p3xQX_Tw9P7Cl?9yf0w$d}!&qcLP8u(SX zkF|79m2hyDH3?W*RGeqpNTkg3e<>)tfkGK)S=8Rb!omxc#)wO`*6Kz2emCE>x=6Sy zy;H8fHG?z0z>3a+p-dGF& zns|c>N~|Ec6TD+3Yhfp9Z-3#dvb?1;g$Jcy!XgO1P@Bp6kqowv^|&{u4u311V<1_- zqFVE@MkMn&HAOu!?7y2%yGg!ogeD~wYStFtjz_-B&?BgDzi@d@Tf!)Bec{yeJhiNe zKuOI8CD?SR8uw?R)EN!+FQ;y+n9Z(6bQ{R^+_<|0Pp-jd>-!OQBe08p9c5?GtkYlM zZuf_GTe!T~|F&N>*^)h6!O4hM+x>l(ExkkCn#kyR$1?E|EU5u(3sT?H9k_2z^55vI zl;19dzR|I#8r`zFH^KE=TO{uGb(ksq$W!j*mPX=sGEA_J?wcKH489M!*ewDKsJY15 zfP#Q)>%TXdWxGl=%eTJy1n#Hn|3;k}nrdvBDL*8j-VO5XTX!+=+}^l9V*x5Bq#MF|Tx*^Qnat$IG)M51SE_ z9#qmObF#xIQfa}C&cOA24oJs<*;9RUw0^zM7d{VZ#pxiL+%_Uz>^7%G%`&MBkrQ`Dsoe!(|8hrH-glUrX{CHH3 z?>%?82eX93bQgixRaeeAfV^I9j&Xp=)A*cbHZ!OQiF-{Ridth;(#<*Y#rdB_qS5(y z_IGmdyA^3jiq`XGiy>hbER_oBcG0OHNfI6^L^}%CnPkN{&6)0-9v9x_Q0i*|0F7~q zGM&n8IeqFA>=OU!a=t?z*gf^iuaVYVuCqm_&?Xc-mO-K+VBv2xHaDhX61 z)jDf$B8gT6MHcQX1wkhC%Gs`H2TcqO^)mbt^zs!1=@VL$@>L`+(MtP8?3soV#E)0* zTPe2Us6Ll+pHxspJZy;h&m|>NUtX98hBHGibaAM&B$SM2BGH_y3K5PqZUh8$7LlUH z8$?Fx9$8&@Yr;rS+?iu5@lF#j@yHrV==`26u*v+lh*RtSw4p7xJ;T=8d*bSXMJc%( zsJ+$!2%dxK+X_FC#YHN(*|;?-WzCU>-B2Gakq)mv^y$n(yMkv#qhDy-bWQs@Cc7uw z4)21#-43oj=-{HQ?Oh@emUB{9exmWb+i*1ly8U;iT60wmY>+CbDW{+ zxh099wSGl(dbW(}IEteHD-;!?-z}?)J(1yyFUpfjP9*Uv_uMiXD(9QhX;b^L?Feci zoZdlYzcbO=sy(ARk|Ed=1v) zx-(Ow)(nuqsILlVEmr<@`DdN2vjB_rQVksuyM=;_u}*ah<_G`rSV75`nS|js>Bf;^ zjUl>Qyqw7J*25=NvH{ccHn$0Nfa?bpi8e{5>9(G~O5(p!7}_r|E&$@RN4bze#pvP9 zU1;Y|)^j6IRYv~2i3thRX6D#9I4^~2MopfB2&i6LuH?6Y``bbI>DVtUDFIfaDC9=b z&RWgM)4wvNy8~E)wPsq5+u+@{zqOp-55e$>vlHtaKodrk>d4hkN0#jCl$HA-TRC-G z=s0h{Ki|dY8~i^0)t}yuFI)T`jL&CU+ZE@6^RrGXe4N@RGMFX^Dr{x@#E)c&ayg6G zJz(;l3_V9TVwN5fy>1K>-$rCeWSWVHfjkrbFliYwDTv=CQ97L?S^23E+_sfcM`5hs zg!!QgNV7|xYcvdopV8i4;4EB+uPloAWzIR>v=)V#$I)%ju3L=xmvoyDszDD>_3lu81_ z!ODQD8jn2`4H^B9*;xj^ZGs$Pkf81PxBQ9q@J#oP zg4r%8Sn|hOwr4P- zhakJqKE0HWi>Kd*2?8reAC2Z{0FDkP>K=z_z=^uud<)g{3Q7Bgzk+BIeDM`y+vDNe z*3w6kXp8BmTG~8Wdj)or!QNc8s z>pL)+o8Vn(v0u8(us@ZT=V!`BPPM@y2-G#FXi5cQ0<${uoNu`()MnY+5u{nFo@6Jxi?6=K0)V6*%E;#SMfO%ag$?mJLTO8s=X|~ynm9V(66em z_K)aqEP-N>jzd7%8oAP3Xt2caOKc~3t*?$xALko;b@0)>B4I7ee`KQEvPQyKp7nLvJPOblkq-MFLyqD$(x#?Y>tkB z5ANrbxGUr2j+tf#-}S0J0|~yS81I}%b{Xa|!s50>berjiz*=6?D-iJB6@*b9)n}@W zGZ`WK7YE2Xn(T7U94t#P=yC;f3cW3%Ki^J&+pM1^ghmn2jK~-RX4W+`#p4X~+BikkS~ID3c2J8PqhC5=Q#8 z;O1XidU^}EmEDtR)(!trp+}Y(ZysBvS0mXIJadPk={LAp7FktdWipIi;%5md`!lwpiZ7ke`)x zeETlffAirjT*O55P={HHZ2?jl_!|>(+JyF#d81NLP*i!FVw;EE0bqhGCM!_$E&Tc z2%vw2)EY+4{HVIhZ0a6#O+Ak;H#%IynHMRQq@Pyud&qFssE00x&JzEOp241fz_7`1 zz`4w>^|mjF;I4&-aKr1vetV*z zKfIF@Q(G1d1qGS=8V}SBcZa)GdNU*q+o3Xd2uE zWk})!_s!*crWWO3ZV)26uek7RIA~Kf-0+$%4G+Av-5DMnsL39OJu&#}#=EuGN%6f9 zBuG*HOQVkMDkrC4QC;0~-1eItPrA_V8#h=i{IvlT-B)*Q=ec|^y*XufW-((1u#;!CN#-#2NxLQIp54X=R zQ0z1MuJ>D*e&vgx4+i8Cnzu$fdr|0lmv0yVv}#E`=|D*{gob8p*pGl8h!}z)`5}`q zt{o;vzs%R$NWYlSf5yVN3+*X!#OU~LMey*fu|UlbxN4IZzm7yzARaqaM(9fh`VoHI ze|}le{-bq6tNZ-*T6)ragkfjQhfE&hNogSBHo@bhdLPqrtQROR_^b4~6iaAXyFXjm z$D(r&I$!1~wofZA=p!25JYvN}&d02AsZAG9Z+E;M-Zl9h(U_bkG!D5wwaw(Wc*kj) z&^z!~z8~%GIR%XLBi?nI3x;pXrO7mgOF6%g(BEOBKVA=(e@9QFFBPgcnJD&qdCX{T zo~4>=W5T$*0XgaSi_$bt2RO1$0Kog>=|D}a=`$Qs8_9s71FH#b`_>znw3xBz>^6f= z7#;7ET4-xn&8UW$+^u;ITVOmJ<(UMNt_;H&4YN=)Ug!`hBP|4y*6l`U{dpfT#^bS1zIm#Iiitrw_0tq$vM>1;pU-~! zyzdd_%T0e}(Iq&_&lgRWG@(w5A7e?Ws@0pJ+nsn5-5B$y&mEOT@E5pqz53uV2>d>&c@2B zgU)xNPZQEw5YT4f^@x2~s#CtI+w4X`M<-QYAZo&Xg&qcP=oJ}0&ZzZA)xo`1->gJ) z;H$>wduKKJsuH#Gw{73kg!SL2{lcj;%yn(acs{+lcfZvStWC*p{2q4kzZeq|6CbsS z>yeG&A2(C??__-#fU}(Z*fRLr_Yu;zS2wiz&gVoF*nm=~TU+6-?W4@{9WXqYlIJN1Wn~!+i zz*2;Thv(2B=R@sGpu>>s?Zim~z74lP8kRGOO^knOQ1O>s(+sbr3>xRd13?(q_du_} zR2SRm$mY1=7EqZWuhM+^0=`5V>eN&}r1@}gs(xMEiLJy*6yvb$dg5So$p2i&CtG7w zHc9Hf>cjS!8Fg4@H8G8l3GKANsF#=I>?s>tsFP3E%XZz`DMpt_; z_okDduEC4q11m4*Ga)6%B>ZMCK%;IBMlz23F|fJn&ggs5RR!OtQ=MZY3zd}Jz@xYA_MYiED? ze9=4%3kT;%PoEbT&C?`pu^J)FHI>crLgf}{9b&oJ3)@U!V5Jck$p=_5M(z`>yTeQpPe;UaPF}uTlOK}S^d9EZr~H)E zvvj{lDgNtBM2#03i`3DYnQTzd<0v7qaO?i< zBxpo4KUXhkoUSe%E_XCDCC1F&+OjWRp4Ee|8qH4JR{V}c86J$^2_(OueEj&;(3zpP z{q3~VJe?bO+DPOOOTb-#(&TFW>(-VWQx2rET)j_gvA#OhZf4N^sOw>HU{WqUyLuCV zHvza^kU=GwkP1JPar(^bN)TDPEQmFlCg6+S9iks`w?-T`nQgv##Ut&o-m3nAiV9Xm zJix|gsX;xJNwyfuuH_Z}cu?=$}=2S>?q_CDIlQ5{U#1QY%`}_UD zdV9O|8!pe03jj9lUIX;?#!B3TgntjLbd$)7ga&iz#@Jnjs^xU{Ou4By6o)kbz6^Js= zV5E1wzR(DeUo5JNn&2^wp2 z%(D;#tie0+0*e60#&);ZDFI&B5lB@UnB?ky0@mzDZ_D`sljlFVewE95(3@c$O9T7q2~Q*b9?W8P{Obv`$q@wW*vK8n#Awu(5`P;-J6(C ztc$-UpnJ2hsf6SZM>*Bso2Nl?In6O_Uz`PxA2cjB3oH}GC9tDgh)z*nbm0<@K3)8Gs>BHsB?8=Hy z3(u}$II;I8G%<~QZiaigqS0QnRBRK3dcXxD)OWD>GZ<<$`|hrPcMp#Yk8`7H%xEqt zp=sS|TDoB~PayI9^2JCk$xKz>*EP}M@mJ?jIR+w+B^BWToI;S|)1TW`vBxS95Xfxi zX*m+-zZ;K;iEGmt@PaSEQl&9ccJ$Sv_p3s*vmoVY$uw**WSqfQ!FI_e0Dz@mD{GnE zxp~KWzdKwXYWkq^mY4F_uy$tZZ`*^f|IC!EQESE5CwQXMB!eLms;vilPp`(UZolFj zb+!4YPB7IRhD!FkTrYZXwqEkntaLK+GBYU*f3+TOYGeGRY{uu;69yV%wRY}e%f}7{ zklvK={LuAKO;b_#>3E33tyt~8ylqWs`mcLM`>FK4m!0LoxRo z7ItrS3ozp}HZIQe4Ex#Dsa0hXlqi+=yJr7>rqJ2wfnPW2)<2yIVYEwGQcmi9HCSDL z7WVD#f$jb@r9IldKEO=XlKN$)u-a&ykI`4a@uS$x;c7ml;k8OP#eT&A977R?^5Z^U z^UsI)Q?rv4j$)bw$LSbnFjp!2hm>nE5ZN~p-kp_gd2J}Ww%Yau&WRRJUz^1(9WOCs zz1w~2O#OO0+2d7jl^F_}*SqyMVad>|(DXW6;_Z{9^|6pPqK+l6YI>P-%H1yc{dqS$gqZT9vs3tB zvAeNLXz1URI~6yW8VsGWlIdeFQ~ybg)f3z^DC9U1m?^}Z#K7eF*!Kmxm{I^u z$iNUYVQm?{>RTA>m+Djh;zy2|fT0@Bxw*JqB{|OfgNy~rl zE=CadZ?DUeH)=sDeEf@XLGOuTb!!G4e$4?KoFk*@c5egrYgp2;`KDTDJ}91NlXA!G zpy<%4z1hbB8~V9fTlcjuP_T$@ zO&dM#V5PfL#tPTsD?{;OHDsg1H`{u>-*&6X+pTwgU$wOI4tT!o{%ab)zzXi*NltaS zy39MvSJivlvqdK38B^g!5b&m8Ut=3R^&c((HH6iy>710WSa`@vn(M~ml{Pu8XbPID zl8K-zy^EQzQcRK=wqDGU8J(V?9i&TeB8&~s3)zO?{HxxJUfHt)Ih3bi)l9{9OEt*e zx7-*7ACs6lO?2HIrSw+K2FHceK*)-QoX1-3B#y|M_j^yiTi`m^^ta$xgwW!ZpQ!B! zG;Oa0#nVXMg9z^G^`6%8r(d{|!pnAtiv&hrW47hSa)>ObUwq6sv$DFFKT`sD2O@7B ztk0a7f6*_@_&vnj&LDoy4k7lEzO$5JKPp2z-BGeX#h31R2YbQ^_nDmEqh(>3`7Sqh zM43EC*1fXXdR9`uHBVM=mGf!dW5r|8QZ!_7C8t213;ub@nqZmao`4Is z*!9{~+WRf-mOMNgE~#@s(a3z2Lt`yPN?7a^GYE_WTCJ4n@}&y+F1fyZE#y3vF!rQT z-@aNb#=^r1vZ~k={q2m*!pVdD%6>;fBlY-+Na_5=hF4K1Y$XaoT6lKaa^>=qlP%Z5 z1{a`T72HVgY%V`XAF-fJ&L7`M91D65FpTY8yXAE?`m$fGe=#n;uL9zOYl7Tm|4iJteGughs65LDTdZLnXQFBpayL03IUCzz-Rc{eBwzZ|(cn zP)8ge%+y_M<&tpBA4*2!TA36z2*Z#DV5=!~m3vsC+;2HyHL>T*sC+{!>sC{DZL;J= zm2fs+PQEvuu5WY;YspPd1urHj#}ExL)ZYEmv1}iOkQSL9A5V#1mW{JQ7yRR=!Rk*8 zp{H9*4w0)pH0ESSrl{>rfiD4B*t9f=hq$#*|M$NDgiJqW>|Y%Y@<*gy&n7vls%z(s z7B@l51LLaYf*kN`Os(`}m3<*YTM!l$U99aOe=n|yPBdd{C_4Ejgk%jHFcEF=iNiXB z4|i!m-&5S7#+V{`JBt%UA$z#CN>NUnfBtDK}ZzYm#xK3d}y3cA3Z zapGV+y8j57khp;*vc9Vx27sY$gCigWS%}dJ#Zz=hpAL^}kJ5i08u#u582-ftY@o=v zd8+X&5@(&gn1e*a*}ax{$kL^O@zqS51+bGrMG4K)%7EIkWcA%saCPe6Bypie$_WUx z?KGcXG?$4+%&AgKapmzZ3g`QX@7H%K0QA%xbA*(FgxW6Z%QAJvDMiQW8ItaZ+Y_>(Z_o zcC09ClER_2I^{Cc;TO^9pq%vJVh+#bHX|7tJxmTu5kWah)kolhga~PO2cZj!RTrYhW?_SvqTw|}oZc=p$x&49aupG(69u*b080W-} z?STI**e4Nw`^G=cO6NyOG!Ze!V6uOm(((c@m92W_RlU^JxPzfmu1=|sx^7+G0i|^+D(#Cp+2)Cy$Z%ay&T*&8QoG3_@ zV3ylC&r}^zL0P((G>8w@_qQ7%xhgBaw`klYYco3`uy3=fV0_sa8L}8Jie56wl+P)P z0=}<0elTL0rZ7`I0m@Z9NUlWvR+6dJ(E`UCT-G-wYIWGC@ck;DtNx&JqcP%B)iw_v z8ylOGE>yk@m&?7**~gu%$de(ak(H9VrOu@m*Rf`2Tcz~;wh`X@;;5LD^+>+n>t#V`jE#-gJa_$&Fs1V( z@rTlQaBEB^F;KAp9kTBSCIiGp@-(MTeK|y^v1efd=dTy5KgDRFbB-JLX^S;maP;~j zuuus^cmXa;qcu-5wKFf>BP5W(1yM#urjwe-$?3S|x*IkSP(%&p{^I})5$3;hWz0p- zH*P_fX`mBZcAJElk`Pr^rl}|)tiCNQ+^4|*%$50e&h)5keb{w^r-kRQn2vl^IHRki z6n&fTp_oRBiFoILJb4YkfV(&2wIVhL<9!WUDK@sYbcd5zh!>k2El0(e*DOe z0`!xxv$M1HS97LgEv}BML7_1G>|J$BE=5svDwS}{Zs*}v#m3*bn3>;|wOrx!C*~%) zx`^dDra&0>u?E|q?{==`{;;ihKwPD+%;<0-^ru{PT6`Y36+D-5|oTJN%iBVThoW_-H6 zzdjZQ^hsaSHQ>Kz0;1J&W$Jvbw$^fiBKXgvuYG}ODH!2>$Q`^W4j<13fCt!&Q%EP1 z#+cFOw|{skOn`w$9PZ)tgXnbphilpOtmpTQ6G_)I(yMIHktUg=gc`?F%D(^99VkRn zGBO_nFJo3^``l2IB(wa8N^-8b$Hj}$!$`g-sNp23WY)KQj~6jks?&fZknsz+h3h^I zrL;(;DtGYJWZtYT=Sc+2u%_eAXa|dj%`g271gPqRr_(+{1RDM2X6GvEv-c1)u5j=GUarDREzS9~66v`UX;A<}70I+u2?eu_%B`RzQN;Rh z=uJj9(x}G~K(jOe5kKS5HVHX$-%kOjg*)pPv2Ei3m;R`ao!+^Ld%#W#eO#E3vMG$j z=h~_)V>vj|ft}>C-3k*+y|Z8IM!Gm&UjB4mz3?BISk)=>xrF5XT2E-tP-~HmfDbrQ z2KEr5RiW$e1SN2PGhb(U?2rq%{2)uN4Th=X)v5ej3Qhm!3kdUH-cJBVn<(0rfl0H* zx!p7Fs?w_%$Uo;WM+kUkOfzDCx!x6My?`!n^{S<0P~gMEt}V;c*lsx{x) zmzf78#URGP_du{m099$dU^mIPuyz2D=&8IQ;Bg7^T>;e0!WGrLEG&~Xbg2XwW{Zsq zb@SETkAS9grphq#a~|dng@lczw?V@$w1AaWd4fuwilfbeapFBySu-(8X$yQj6L0ubA*fm$cjrHPl#+}8 ziPXuMKpGvlOmfeKUF-jo%d=f=r>>DkYnZEzI-kN^GVr$ z|K6p2LDbf1(!ZOe%nr^hFomg(nVwT7H7?Q=mSb4x?Qz?4>wIDLvf93K3?oOu_-)Py zBhDf7y@>)NNN#v3O_Fym=f=)GPXC9z&C`t=h=48Qs06v)XbNSF{yRv)wR|K>wryV4 z-XQa3WQv2iYo&U)ej6$59wxrYwz=B{oA^DSv{Y`bkTEAI9l%~uZE^qAOZ~!xiH?qT z9QP-)gOEQ`!Du6BL%K=jv?^2L+KOxvmGsP$&Mq>EASRjvsW|?PstuYAzZ%v$pF3$~ z{KcY3qy&25RU-cBR(?@KOQ8Tn1zBDk0m`U2+hJWAn`K%8wB>AN&U~)O^fEsa*u}MB zv$%!JbtA(RU)Qm*Fa^)DaVCA(;7g9@_eLQ$;t16W6P_ zZ&=1^)nFK}&AVHf{FQb^kZY11`F%&h254JmQ@Ovzdu`h?- zN*ceNUG>qK(=|&yVA=XxD3_lPXSB=~Ncp`TO%dN-*YvmZVCZoY3;Wtwqo~G2sT#5X zR#ariC?d^%;OYdr!vxjJe4obuNd!_zgW}p(xFylHPs`U1Dh~aYWF9`LMoRokQlfl3 z5gCha!fX+7%Qn!eSl6L#4SJj4AC=xeo_aKCnC3UU8SGRE451&&b3c9}hd~45SXE7q~kCgAdpQuQZCBzM>g#XgM|?9<^14EHQ;uTUpqE@g44Hua-N#!|61+2$;s zcf}4^ak4v}#AX1)WT!8AZ<<~QlYnrm_x%+wvwBXS#m34>Z(I3oz5|jcJ;vVGm4jLmdLo$AI|nZo4rCV0wH_?! ziKW%>!HU}*XHvVv@R=$E?Ql!~MjhiD+fx(eh3Zug?hd2H77$KPK=6}Vm89Mxp{cdv z#tp*%ZT!XCJz)-t??;MlCh50yo|ok9j-rB2B>rRwt>^ZWPE`NUemt_P4z=anXHmQS z66%D&`rH5&$mHE!8lUx;vlvxtg*)eH;dibUw-)(j8(p=DhjxD)Q6>yg^1SHI1gK<<#QMsN zUOajj5al}IEmz7Pd;wj~T?^kO_OR!h6|%iwLpQF_Et?4>gcJM0(k+BjaXX@A#STF+ zY~k&f&eGrZ2ogRWaS+zK;y#whrSO4zt^oS<-a?~Nf$<*R9z2|?Bab{~A)5hP*!ZzS3^ zA<5T9*v-aWh$%}qMMbH;xKBb|9q!#NZWCn>wrUy(y*UKx{$IiovOEMyQI71u19Ho6 zbkON%8LhuruRu^ANbu|_<1bCv!nzsWul93%#xfjQ!HN1;A03EGs3ZUNSy3 z%V+0G(39W?{wxtOnL54gyS zJD&g%2%MQ>_GfYkS5&AO6+fYTC=$JJU3;vOEEiat5qh_y`k{GL1r&)Y{;iVC2Z=R1 z6-?dFk;OzYYlNnTK-Pr+AupnFfV-w*dDw|@JYLVVMpI;O3e|@n%yFRH(y1SV`Oi`K z&k;-y?TJ)gbwpS3Jzq-laMhfAw9xVkDe2b7ZiiP*vTyj=-%gQz6PG+)RcO;@`hzU! zCWyI_>zAR^LQVawR}uAX%FIV{aV~TF)|TBYv^N6FQ=6pW0i9*+w<+7jUTpBAQGnAq z1NFT=6XSu`*w}m6vXDS@hZ$`FGj+5pe4C>$Y(yBpvFG$rMyVfeNleS_$iczt+VJD-UitB`xpp%TGXD5&!*#P=N9-WfQ$gnNNnq=^my;L`4My?OQi-3s68*0}_N8WXqesO= zZWc%_#4{3U56<|ix^`_ekq_Q z>Sw7sW(2=D%oDr<_zeum7#Uv^k{0$96cqG>!HPovlWkdu2A!r-CTLlEByE0XQKf#s zl@w7=W^f>L<(ZZ7a55Jg)KranhuSJ@#!#m$&R%8v31u_ge_a{2`VjDPDwoi!Qd|AN z?+Y=fpwA`{jzr;Ms87RE%!0?3d*$#@gAnLLoxj|I{7TE%fB1)h<{3lw#)QzeX0USg znv@yqm0%G8Y|qcL3m-;Ie05K=w+<66?@AC*zR5;l#i1cr#yDzAbWk_rrFU7qDc~rP z;i5$hMETHT^Y{zGU)SNQQ>Us^p&aG%1D`eBIzz>F+ZRe@+8y^p(10W0=D}lbE`Iw8 zwG_2z5-}8>y~cbP9{D^6uvG)|iz?j9=nfc-b+*B&Micqyr7c&g(Crp=>!Eb5{NF>) zf9pKnU0Oe0PKPqujBgJo2R3tWzb2ta9g>yq0Uq1nO*U%9<&chCK{HRfXnv~)2qjmwm~Z=IeOhplBi^7l*9&jRH%qY z-=02JVoEZcasy%>jkKFutWc1d;{emhM~$6lDx6YCE>&S(ad)SLO)d9(_gB+Gdx>_| zh>NW?p4y&Pa3){jN$7asKaBs-sS~K{JLXF87Q>73hn1-C(=D28`uK z05^%1)z_u}kAb-cIAt_z0HK0#dU9d}6DVzRt6FD7=zB=owizhmvFGjXV968_vymr@ zV3yF}M3J$>uR2t_u52V(&UDow9Ivzfz*O}>Z#3@f>F^}l zEC+bB6=+Jjytc`P{>z#U<#K%#o{;eVWefvM^R^5e?sv>UckEkE&q;*YiJnK**{_oK z;j+J9Bte|)tFUmF8LO7`w7%bePe}e8vUadbj)yDN(hB%MJwm@=c&yM^gSqJT`9K4~ zNq%xlBS!QSKjLpk#1_ylQI8KZ{JZi&If0%d%d%sh{qx%kiV##PVoD7e`6!fe*S=9T z5kU+QK^L-f&wX+5@bC`Add0Sly?J zRYW8tgaF8EuGYLLW<>YkU-$@zEu3)T z^-vl{9MSB5e)BUfT%*Hb;Z-rDd(onfgn>cE7@{&imL(i(>~=U;6MNpU-WOTaayVI} zM3>wvQsCo7M1+V41N@MtMMtw_*|bs4mihZdB@7sBF@gOwlgYvtBu^-YOky-k7?s(4 zZo=wwoyVh#-TstB;wUO0?N97DUTnJl?(^l2_^)?+c~eayq92RMQKZ5DeuOMsK1bdM zZu~#StARhIkT^dn0QG^;eaFoc~R#$&aw<5ckCQmfusNacUCzhLNx)fiv+UWNj2SESZ+sy+? zxNKg?AN6=z4O$h#?3e5C_sZ5YBO!j&xqAzxIkiB zFwYKf@Rx^Vk>7-1QSE(hKz>=VzZMSlBk(N)U(LIjMWNcOHB!EOfBps`FS3)PZn=~u zZVcN0u80x}Or_!Dzz4D2f7j&i)&I|rb}Sz+qbWKoB3Kxh(Q=(HK#YM>>^mHsLU7M! zVgukvX1CoMf}bLqh5u_)z!po@i>8njqLzkBck}%5_nT#c>};mQPqUTWn^e8U{f#6bfY{txN_<);r6fM zT7$mdoVIs)dNIiX_)?A}{O3agtB8loX{{WM;=Z%B^>uVW*T^s&i=F5~46hRW0klAq zJp9UW9%B%;6aYf^>_U)_@K22=#jEE@C9PEe zF6;#WDWmS_?DI`~z{h>_a6VF@)AfqvsM4t%Rwl-g*w}K-pKTh2)FQa&j~0ra{`GD7 zwx(OH$H|I-&}R`!CmsOM9`FGtgHLB#0XTWJqK}{p(4QcK1IOb4^i6jnUxoS;q+L#mM`2|H+EJlmL|xlu z#T!AL?BgqSE6PY&6JV8W1tz~}Bb9UdyF5pqXM71nQ3f=dcNe?9B*GE-w?Ak*@JoTD z3i=2K<~+L4icN-}Df^11f9_2zvhobUiz_SIQlg}iXeZ8a>Yi2i+|)tU_ zdNs|(r=_Nb0|_97gd(|{k<6m4L4WV0W1`VIOD*o372go?=z8Pe(9kcboc0q_6a>S) z%UI?EDG3SrntP(HNv!6D9(?(SXWzhtlARBfS~|J<7}yR8-WPHx!#io7=Dok^uJVcV zQ#Cm*47+Lh3Wf&ic-mg!_R{rm4;m(zCx-b+SbtOKGsKtHuV_y7T!w0*(W-KH0}Gfr zyM0nzyb1l@#rX4yGZ6l5?&`smvRP_9hNoSkf4-FChfQY}`stdzTrF*}kv=Lm$g9xw z9R90`b&4B`o5AKQ_cyh|VpFr?#RLuQM)za8_xA6UQSWQ4V)g&g0u(R|NP-#H7I>nh zPn>vE2NzwBTM~F&Yb$Ol0fp>Dv5K7W_ZRT|hk-$%?vnF1{u@GG_2|l`<5t|RfVWJw z+|or(Kp@C!)d;VgGnG=QnUQ4M%^LET7%B5+Y)S+&@dWMeM}TYLd_D2hcDGkV8G+1C zt%VG7H5g8U2Mh7^z3;od0oXR&O?M!{hDa0$Q&|Q|5GsJqW4tf~#Bu5(ndJ)%dc7-Y zu17MvcKFT5%WZ@JJoOE?TG8Wlt!Ds7XQAGjG9q`RIPY_?icRPHytkNfopCx}EF5U# zwD^`2vOZWFE6-dZu#CiHaS!oul^;Kv_qqk${m9c3^T%I#*uFH4v1EXpF({W|nC$Y+ z7MxM0gcvT!mKGzLvs>o63({Nn$2Z)KD z_m1ZakV8BBZC$Tht}z81But=)^Y^Zx1H^vo$S= z+L<5}V7eSP8J4z*@e2*pN+&4^358n`lbi9O_@hkHZ8z4Zpp;-hUoM;W`Pe7ZQ) zgfc{j!9GsiYX~k{8}F+ot>vKC;gnfhUM_|GzgmL(!z8-;Q%>t0?%x;hT#=X=a}0#J zcg^(FQ`~8WfnDBPi%G5B9Jp02rkty=-;B{#dp5CIh^7Z^p*r$!8tA-t*^vBtQQ(Vm zeA#J_E1b3ah$6UF@VF4ux_K4*9^H|zcZ)YfaYPH=HNtSXgk>~jA0e(LJyAn%{sF#KULP$g%rehwRsKNQn=Hz!HKqn~b5z{uQ9(3Dh3>#8v3|1J^-ZOk{XM5$ zeh3K)={;%uJMbZg?Ny~yQ8j8q{#NmXcI6&GgtRpYX?TxW|(3gtwRpZoI?OdAxR z-EBQ#oP9Fv(MPSNXYy*-CIrDf#jl%N3Jc&CSUHE)p@Eq9G3SWAGXx#Kr5x6W<{*Uz z;OAfN!S8KWB;P1AVC)Az{(dsNX{+2m4Syed0p&9M-j9hdP4=>g_walB?>dK~Gj^?H ziG!6)5WFwI4Fuj@?icYVC1Bc`n;fAiVYryA0pfTA|Lup{^GTT3$fwM;3!Go5UV~L4 z5Qc|T;`1u>6H}`2*djpZGQh^3Z|{LsvX#)*l~AUNJU@9 z_B&0{)8psYIlsF8^nWAE4C8Df}3= zX7kf_^lX>*yQy-H2Ap7$0^DGTiVIA%RNWV=LunydoTXV9B(<~a16j!I)}=-McrIme zhoYZjac=c8b`jwNOi8&SqO|@`ZLCjy248=7fm#IQ^pw5!cuc$6WVOA`z)6D{CLKXf zkM9*1=n0bvG@)^A_zx*RRqK4hyBR?_c(&sDd7UnlBhu%5<{#i*PB%; z?4{H(t3WW2BJ$l}9F1Jk4M6XzM$=gQeo5gO_;&UHP=}O+2&5Zx1CiMw^W;XY;-+s* z%4?+0MZ?_y9=Y9F=ozs%9yEVD`USP%&ezB1U59~(W;OB3JxZ5zqQ4V+GOZj#2Yrhd zzZMVa18I$F-?KALU#<`ZhJ@^r&Y1NMj-HWsj(UUacYPU=FfGbJ=VW+NotfDiw^^m}t~PMZ z*oxuG zsfkg;sF*CEPj15!wUBRc;PUaI%-GL^oglDOrru%I&mi6l8~F~Fh5Jm!`z7(fBt~5dRzaT5{M1jAgD`x}O#3s0tr-;)?P79X_&f{_Y?> zgy{0lBT7}Ay^e$63NMhgd?{Rleq%+0y@>^d%5_M1@t%0>a{Y;NF)E)6t&UUG9QMZc z2IdWq9f*?E+S3FX3F!|xNb$2T0;=MieNuf)&`&G5&_Bnr9wTSt$aHCUUF;<)le;1h z#$d4Z_VqasYNQiYWm?vvNbx#9ntU~>ZmidG${XAsO3gZ!Q1m|DvEyHXx z&d{33FJ5+;5tp1-F1w^v9X=dTtE%ne9X%x4mh3Vejy)0bOgJFY-dMHOr&XzYW&Y^q zq?R7K)fnc%IEy&G{&vZ0Kk*!}{6pAz%gwEJ-X@fEQCz9QT0czuedNt$#m&BNiL$FX zwZ-@QWYugNS~<^Lj;1BBpak=C8%KbFwLjImoUH87pNXob3iGi{e;lrDA#4qP8NGdO z^2Cwkipfoo{dOieTQugK4lsJMy+Xk=qDFfctF#6Wt@SlyXVXIKYmY?wFrUd?&Va;mWyp;ZabDpQvTcEY!pDe5~RG{!sHfJCkC+r+Pt zTb=6Nn_}EGS?^5JZahUH`biaMOj_-sKVM%8Mkgi)RPUT47UL9G_ZE=j)7>&ZYmVz; zm(JT$;Y65vv*>v+UCrDnUG-HY%9x;9&J~=C%q9kvV=G9P7@Fg`=*2SzlmF(eqayhI zmI^faCg(#LLq36QBq>&E90fJMFT-&8eQdai7Nf7x+K~I60Y}~4n;G6u4n)SLFnez- zitmyLVgfeYkzOUPYi@-A1;1m*V5ds=v!uJT$Yp%)<-!P<28z@tR!yPjmc&0eszH+% za^}4*%=kU?v>Q_@Ur5p-Jj<3pg4}ai)P&u@fFZJpV_}jBKXPm+4Y`Oq($+6KvD3yl zRoK=xiC`p^ODWo2X(MEp}sWa~eV)|#t*i7AFSyP_V;;|nh@mtE!C(#GWH^|1$WM4rsE>jo1K z8nUHyL|a~Mf=r=b5Ay_Q$btF{2)$~2+LGvMsd3GWOY0a+kR!^c(1SGW1dSo)A2`_S zXqOVSW<^y@R`bA70Xr=2Xq9FkJ`Y?&_r=Ab4g%4jD!X|kd%-V`&_6dH?DCd$1EYMqeh^fP zv}qNq^CCoN5@I>Mh+ zwHG^&L_*;#&A|+E4fXU|i;X_V#W67;1n%oxb&bnr5la=3u+*$Sj#o&8Z}vV|Ctwx|0tTGk3ia=$f({(v-@kQH-zFt`$ z+q^@@RGTN|Kohp=f$y7@@@K)M?MM<(ICkx=r2qMIao4?j`!k??ML$p*bny&hMMme|TW>O5i!xB6%W2G$)H zcnR2)*CUYBuj$B$>g8zYzzlJX`0lXcTZuD>vOQ&FvI=EgLyP(=-#!=1J$QsO%+a0U zZMrc@Ue|?2VB)dcR-M5x5I}qUx~A0+dV#Q)j_$Q5X#?tz+A1p7FhRq2iO7r|tf$X$ zvGQe;h*&<1=#B@>1Etv4C2di63Yyug%Hplpy4NhXnr~`0T`uS5mmsgR>*Gio58iu@ zflaA5JODnM3tQjLCrP}OI==SgIUJi7jBMf-owF5AI)pX*JMI_V25k>YjZ`XJUH{{n zgZ8W!;n~~Ep+AD5)Y$>%fkXW5!sI4JO15ts1e`r9M<8WAkt^rAXLj1{EFkBss=3nx zE4Ar_+1JS4$6Rqv7TLs{6As(QMouHF5}aQrf8(^XE3!{2R zNkc(Azc`ma|2XUB=&@y}`R>u|skjTD;tawW*c39Y)4Oaf-j6CJ^ALxH)Qr zpqqN58-&kCM7C-aHvWddlOVW)nj@E=*Eo^rPilon3nbCT*K74`H0Qh>dBP-F9x4u- zP|K-%QA_tC7u#MzJQvL-^qFZ;nO!BRw;rz5e$)^~pu?&WO(b-1u(#@cG@!esqRUyh z!H`zZl$^N15P@*09L8~wBL3omIeHQIkpf+LK8lUqjURIv7XH5W%K&?~-*0ALwcST-1s??gCehwk7Xmyw_U~ zcgH}}#U!w){%2TIkw1}!hbVUWfbJW6*OX&$s2BLO=T?1AZ?I8x)IS?!_>Q!Mj+pXCEmkcW8s?K@OFj^BG_vz3HL z^|jswPk5xCNQu3bWHEkXU`D6SZ@8BNvKi?GzjHq*{nf6>`Sx1K>%X`dp{p(+OF=_<$YZS5r{`pzkmLz@F2N3AE4_6i!wH3XTx!zzO4E#jDAgZ94+1 z7-+Vvt%%*+l+t}vGb`950)pU`LX^tVy}F*YrUItd3EK!0^^!ICB0`-VHOf~?IGJ~- zJqj#7R=ovBFtK+t2uf+%W$EC7Y-Y2Ie@k?Qs3j^^d9fnMdxeWWS?>XPPBBln&+9vg33=?TXFj6HJQ_r!3exU+jtTZ)T zy>P5BT?3Ys;q+A--shNQX{^UILit$;#H*& z(pk{<@TM+0c-t0jy!_<0)Bo&_I%M2hV5Ji+fyodhGb>Bsqa7kEz`1ncGPmeM23d0e zIQ>0?uAfXIhZcadbcp>ASK)>XPym`?byS&>68*L2^Alq64g}lk?;u}=geZnxok{ji z3lh1_G10^4wm78Wd{or~lLLi1)12SOcvzL&H_>48x%0rDVz=`dK@m7*S22dy%{6{x z>=bA__#M#rp5uWyo%o@{jr_o_v@b) zf#ik}ZqOC%z1?`Zkui*cf2x2n^c^9z3B>t9rbM;oCC5f@wG+sr)PdQ7Py6bAveL0~ z8p7Qh-uLOW*q-3o{_etf)5-Yx=~21L;H_${nX$47RvXsO|G8Och2i{)K@28GL3d}H zgOi%}No{iTU|WjBI8ZQ$R(CaPP7o!n=tab=>DcD1sSHOZ30XvFd&Sob8K%HoZjWbd zC>p%O%KI$Ar8IjnAy2E$s1P=SacpixQXUIJMKg}v@ox^hky|W2W7TT7?1C9X(@fWo ze&$MJm~O2~OM;i_(0j}!mcPmbDwOwEo~%6wAqTKePakF~7+*a-U7{`B;4E+yev~AG z4L7wt=8j4nsInCbg4)*UaNkcXhYS2I3Q<4c-I$?8J2;L!IQQRiy{&_Z{)i1niwQT> zS9D5kpB66u`x)~|^JK^(EnR}c?WUY~-}U-PA<4mIcZ-#ZpryNBGL<`Bq4ae$-@k+# zkyQ^75w0808-1Ct8iqNETw3`zJ~euMDE4$CUsDfjRUEbV4oXD8P=dsJS^8CX14XV6 z(QgxKyH6Pl?&FO)7vy)f%{z8x5`=Ze_JelwTun3+BLtiL(I z7hTNARbB7DXQ@IM8y(UuZ%9+d*GXJROnm$rxybuFg;<65plIOrO)t$@&KEKJhlK{r zWQOw*r$w{$w(}d7s*Srtels8V=oXg(?a&sA#;*aytM5UEuS0B?d@9aFU&c)zsL1;b zYcuY~VDLB7sp5jGN=Q0V`lWR+H*SM5B=M3cYJ1Rd^^vTN{;{{)^XB9 z?_Vq!HThzgPH9R&CPJI{^1dB+pWK)FcCpZ6fFf82?i%6qt>M_KM*s-x4g0_}3gAHY zyDoKRv$`qbnOz(IvZ*&XFy7wYjvI%&pH$Wcsp!%+58MnBTJ7+ZI_=*d-&NfnJq(RB zf4-Z2PzmIc-N>^?al|U?3TsN}z?I(M`^A=-wp>~1%!z3`AwwVkmDcmj(Hm z_l3gh&@PFge(u;r^6Tmn1CNrBX|UOZAv@g)h@qCwqW!uU7Q&4T0}9|*RmIsEPEE2- z8j}<06kXV#D1bGY*dB2-`?8vL3FNjHFi+$Ya@fGh<%-Ls?fr7S9E(bZV9OwcoHs8ERQzX}S@egc&-Sm?R~%YJp*?&FSJ1N0aYK zBDvRU&4JAMa7F;*p^tQebdrEXcNzjy$xf;Nm+f{#1u6(_Zwg$1rmGN~Hx&{z1`KD_ z+NYNpeiIh@NYs(s0OpuB-0#11eS2)E*MUl#O`oC**?+IW|C}v}#6(G#gLW&~vwy$X z8t%0OUYq|ca{MprP6dJ*GXmm?2ap8X*oTxc+xizbddIM+D;sRfzYJ<*g5lGFOz%c1iF z3V^Y1AI}j}Pv=lmWS!7=##0p>vm>1{wy*@0${GD5NcV4d>giWU>hRK`l>UYbm) zmVd|zYLS^6?S5dwahtG%VCJ9+W!Q-SaPA1RMj4zbl?%`}c- zcAe?8B)a`oZ1yi#a59T&fcyPb!4V;^oAM$qi-}(_Cb`dcQM^(KC(GiCE#Y_YQy<^c zZ*WXrfeY}o+*3eWv6d6B*;%gB6~?qB>P8L_zZvq{)Fx z&SH}zZh_B_bU7WHx?j%%!V3xC@ICF4AF(t!`&TSC9W_w36+13No3UzO$vPbOCdJVx zJTyk&cRZb|I!-FEw^`$6YC36NUT!F9ahz?`xX<^avtL}P!4KF3QVq`Y-eEsn4nYdj zfbc`_g)qCUw?_mv5J&4`84 zxqreLClD$Y;Ou(UU<-f3#bX*bwlIX5cQS1|(s(G>^b1DeA1#2Q8MTcpB<$kO`?>7F zv-M|f=1%J$4YbcAFI3)07K!=aM_9cs+Ddc=X)y38AwX>k1W)CD)tLMnPkYjsfMc^%0wNy@7-ECeZ&Q6E6X7qoeRTNK3H(59e>$dz2kVPMo*tZZJ(p zt#Z*uN7lKH$UM3gR{Sf zq2&5ry^-JbK}mnsr*^_W$*ftIdFh$k-tO!VXM9oiQ#D&^>-u%GXt!rng-=hSNFu6D zD8Z(9p>I@>PG`pVP5hxNcIX`=_DuczMJ@n?VC?y;J!M|^`?n~*om7ME?0%%wT+XfbdI!cc#=gMKkn^A>tl zA@&$5zJ9Bwq${N%f2QK?oaZxag& zIwbOh9D>HRBPDm3H0OJ-_ZLJJ{_t#jqffr0KsBC+VF`Ex{qTS`mzfiCeO^cGeyycE zU5rKie2zl=3WYi8yP&!$kYL_$SH8-AF;LVmDf#UzSE7HozuP-r(~pMc?ZR@J^%)!v z-{~(Gi-!Z-fv^;F#6mT-%{;P)p#|q1dROcjIvkaKA@7AD>WM_FHsWGCJEhA2({R>$ z*ArxvZ@quy*e|Bk%3mRnFmd8+J05i$8NkPz2T^`yWeHh@foG@=@XKdC ztHKU#<15B`o#a?$d1R&E>UCFx*6Z@{AicfhYA++S6l}h3n5Li%H(gLP-uL{}q^7Pg zU;n9N4WZ4;OVHrXf1qkUy8Z_PV+3K}k}#o6DDkY}T6DP?MWNlX_lnD<)y{1^x_TLH z;l+{fck?+MbJ{|w#+GjZ&4GaU7bVN$aKJ?G=KM#{2@gu zQaPwq7ox=vuPAbhgX()=&7;~&JOqnM3ToGwoFH3A?fQKZvs&o^jRG!M^!MoAS%gxu z$Vk+Kaf$GJ5lzYN(;T@Ro9b*dZ$mJcO4G*Yn3$qJfRIglLL&ST^SZmosV%HoXg()E zxcIo@`}_m?+n!++TrT)66cwM?q4Rm25F0ILgEkK5C+n4(tl3o`_BFPNLoX9UEs23< z*6I}f^Ubj9>3%%UKR2T{6}I;$u{dqO`nlp^ieZ0bo?C6QNhA&=Un-D6>`K4cTGBAH zeERUoIGeSo8R-vuurq*H2z0stGCdgK(M#ZLk3!;*7}%9Ab1)BNjmtfr$Tc+v=vtfV zKHeq_!!t2+UWpap@p1AtwG_O(OA1pkI@Iaw8K;xc)LMEHF)lytc_cZ*&)orqr4taC z8%yr&60>a&Xm~+H$6)6Lk6LAE_ZzDNLNZz@Pm|<(Xuv5V3Fp)v zqTN5DmK$yp5pm;@?x`5AsVnI?nvs{oy&_(_+ec?|tgWz2687S7{q3kAGSuv>yqrt& zla-_SjOpz?$hzw-VyT*xesD4i?i9CaXnCp9M~^3%A79gDtx4}ytep?5l%;dD_+pn8 zG}I^Pky#FptY|`J()paEYwmBJd09ZaSF=>==O=b*K@r+~_g4Z74}`H;(0vqaRG77P zeKX_F{34Hc`5d}%bCS>4r+m+uy_xyEyK5SY4gI|(Tz80OKPO)~1n zeC;`Y&deyw7b~OVbJ|H?qw?NlcqQHea;J{R1!m)C;^Uc80KhAF+!=xZ?tlH-Qku6j zESw=Er)0*tSUywP&yUBRN|#Xy=Qpe-rMnz$K&*U7am+(i8erxxDtVQry_ShM*alE@ zZx8Eu8%uz=g+dK#Q$XKmBE@sRBRYfalE9{Qai=9)@YT@ycSrtAAq(*xsFapo zr7}A9?*Z=c&=J*<+Gz9dG{UZsEjgW2+n?!;}@&0fRjOzeP)Qo`LKMk z<*el7x#45)_pTCLMcavC_M1**N=dGRtSWZS&3Og`=1Qq0p$|7)Cga_F8I`6|*Wkx1zaopK4^sHK$KXvCmjfha7~k^D?<|}B77|$o{p_2{ z?IOypcvPK5MW^$uMxRyBJ)_j%LUv+G2Padf_#QkbQ9fwoMAN?5EZX@kPvA z^h*Ds11r8h79XqsKeoOCDyr=d7Z8vT>5^_lLb^jb1eB1F5K&TEx>LHlL+S2r0i_%1 z?yjMEd(?aX_r3Mj8d=LB=A3FZyU+gAd~CbJ<`wTQQN8lyr+* zi0Oqq6>Ks>{~Bj;@O4cM1&;L&L3gz{+D%3nFtlgN=(AR+X8<*qQz&lY0ZI1jpaH7+ zKq>)?N%tM;o-(5?ox_^^+=@R4#MjhJ=6`q}i2I`Aas)$F z$H*w-*l0Z^Dm4^_84gFk&?vP(Yw5;Iu3DmPGivT}V&(M-5<4BXOH7x6H;;-u*JT&YyPnZN=#4w+@HNw0`>yL$`H_;lcGmzS#&$ z;Ub&b0tXU<*^h(uu)YGn&ri@}6h6LZCPxi^4d?fgkm=oJS(#&peDBZ;7q47w_#lad zZ0Gi@S}Ry{yueL*=GGs>Y1|+AO&6MetgwZAS8Anl%HVios^_Ii9}x%p(W9UtQ7*8c z;dpl0tSWX|YpH#@prkpF$h@{qo1Iz<0D(V|0Fdz!z7Xfx|AR>Yiqg<&N;hjDw2<^& zN~GuNd$*Pe&Od+-GXd=0qdhOw$loy3pSnW27G(yL zvo-s&1k66OxNKPe0w5QN&@x1bRjdxmA6xn2778;|s%9AQ#FI zjNmpJf&nH3ueP9pitv&fE!zukRPbnv;Q_5H+m^rX)Q~BKh9Xo+rtBf!*t@&_4%Ii(HC^G zH=y*;P+-$=nE~8Y0It#y@b6>x^00vFH)^`xI{j^X%K(gYV`m2k9)~e?6B7oLiNb*B zXq<1n8x_w)o2^zPZAl%C$?WX{$iq$kcU9>G(Bl-MdZfxf#T|NNs1i$5ON$sp`4yGV z?AaYA^4l{bJ|ghQS1rgNTrbbFqHAk8>LS7YrO2#!xT+5HKC3KxaJ`dXifW$n=#a@wqQ?SZ!z)}d1Q1H6AR0Fc$yIx`A;7K5F3IgpxD13&sX&i3zGum#GxETvPvK< zYvd^Do1ys7)JGAE@)r+u!St-GgGm)=&8vZx;`#YnB<|e1u{~`Y@8rOkU=q&5sAB0U4_XwI9%Wa4R$JYYvH=EaM zviKA`{}mYhWP+QmVE&Ju$rm$ytKpdy{yxLr8Y%7Lb!G@=^!fjw#eWB!r7y)IYT`+z zA270$pjf2|0BVeXXy|#kX68RIspp6oIXQXyDN0o2zi(Old8DN|HzK+A) z-A^RckX{^5Kn`4n0yCkAa#^UKwR#*^WF1z?6!8z=@C+&`D>uozz1W&EPj#})lX%W> zi9}6D_l%6FSoRQC>;7`kJwHl7OKNK zbhXu4m*~f7zNOAz(!OFrr>0i5-}OKtU}^Ibn8X0xSbGGORB&;Lb^~6T>p3B?h<^r6 z8I|N2{Aft(=YF-7lTJmFhR2V==|~rOP8-YnD34C5^txZZbR#x(G!wAuB~oBS3}p;5 z)byRM7fSWKUzCDlfLSt4-|0HOGaseP*|-`e5K4s}JMWftqcFmRf9AHBZyahL+8WIn zcd_Q815K~{q95m$wzL=l6)!$XZF`VL-m39_gw}Co zAONO@G7SOg9HI1>MoTJ;Gz4GAA*1zP2ln}_3xF+np}tg|U0q%RqT(2bcwh#fr;LdU z-B>x6GX?0GuQiGu3w!{S0^k83wA0K$A5)(Wl#KCvMAdtmw ze>Sgl`PVj>rBofEGX)6Z!>4@LjJQ3_0-<7`ui~oXDC?2=(UswTz)(fG1#b+n5ZNpP z=FebDmHRpi(SZ>Y|C4#+k>t0s)m|4_Srl`?`<7TmClmVAIAsHC2=Eoz0)@Rxpz}nF z94wbvj*5(ou1c$8#(FxThi4-F1&zorHyUnxnz4L<_rTeEqhI0{N4$t z^ubK3t~c(jo1~=DlUVc{af>UPGcog=d)?~Xf0fq6PqXCo?5dm z`tA^nw2wdlFXgjma!fr?eH?&JzfcB&qL%Dv|7pxKwKwp|wnMuqK1ph?UWJeN*icAe z>zeqMwA?w_s*wL^j7W}L)IG`6GAayDC)|<_6eKQ*iFgjLXs-IuZm^p%4crpra% ztKvxNx*Yiqo3C>QJqrezRQXr=qkF&+yY(E&p5Vwmt=2erip7j(37JaM%u=h4d^Myt z$r%hTRiOk@r%j4+#DQMmSuK$q)YR_=q> z8|bODyB3W{h=6K;k7LP9=QAhwiYDRrwnxYZCIG&lOr|tuS3;9X!$~41mgopr@QeuI#gOv;NTIE0u zJ&9DaxTjQ*4&N#$EbB+@1cAOY7zZ>!tU)kd@>k&!V=H$hE`DmsXsKeZgCG_*8{jWw zJG9iKQ)|9r#L?6e;wdq3$w+)-gg@OfN7OfYv-FsO8PIu8MLp(XgF34oFDsm!e-qru zxa*f!y_QU_L-$nmhD9CP+MC}znZbZZ@J+wZB(j>jdaIJ0BUHwA{_Lu|BX=T;tLuYs zun?*r10#V{xonU?g$s!7ytv#*i{WMLPWcd#eN26znG8vZdZ#Qm2th^pQQ_Deo;w)N z`hcT~^GlS`C@ixK5i(89+gIKL2oxq_&gZ+xiNZ-WhT-D#u8_G4PzAtwx_TX^!LG=} zflRfN85?tLnP-;FX^Lkwtw<4(r&f}x>9Du~G*pNzfB{v@B#tfbH+qwNeff*q&xW4@ zzcSFoJHK-aopWgnW>nMT+S@S)AqY>6!0OYKxqP(DK8O`H3lDc}_rFhqqQz!w>Jk2< zN|K-h)smlpFy$wxcEC>#t#(lqOTp^PFo-BkpJ(M=r*;OObZY9jzL@<*im3v5UD7qZ zNew5nEB2Th9(JeSx#BnCOO|9G6{wZyEV_4L7Zcai*7Cee6Cwfr-KWti%kZ#qVB2Po zEY~K&{(6#?dKV|La}-s8bI$;?-CR;E_4lsg&4gTyrTW_}ML+^yYIV1JcmHK3qVb-QLE;VTGUFTJ3j|HQ zB8+tDQeBa|f*__2Kduscu^28@J+x}dMtx528v+EF($zH?ep^z)hf2eT6YKe|FUCb* z73JvbdHBo;kCDZ`LuI^k%O_*Z$`x8$pL(6Ap*q%(7w{8*qMqSKOxt;TgW#ko1DFMn zBVU6`AdUvLCuH^IkiZ?a+^q1+y#`u;Etuc(;lA5-_64b0?iBp09Gpm%D^aKsVW~63 z{F~lA5ZtN~%kS0oh)8Lo3mn4K_K1s?6p0dW104UOxgwJ(FbvFxSh!ykZCZG?TX%<% zm84#N*&9VgOH5`<4#ETKq-?!6a{%kD@_(g56znCBKIX%1Hm#yv=uJJ+2(ye#wVc6( z=aA#j4)m%Y0}BO#`p~4zGw1;jCvs@6pipW4uq+Fu9V1qZ)$ivwRLlW2CM};u9&mb@w2WLgtuQ)tjxEu8_CFgjR7mEemS$qjoepB}&T+F_(_&;(U3+{^K_ zxw)OWDR{BR^S%{tS4zvfUB;SNu(XBuOOQBER+D=t`S|17s&TMP-G~TsNV?Vx)*NM7 z2+TehI^P!XBNbsvmmg#(y4~S@=>EvC18YNSKSUKm<_@>`XLP-0$@os>S)au@~1LCD{D2? z)3LnaQ)ow$55TXE{TQDUXt9OwU*qHjh=TJdqRkbmtAVg~0DrJ_*Vb;Bc)a@1&q$tx z?}SvLPp!WFatCVrXk3qqELOu{p5{+Ujzqr2S@gkEcA*J24WHfY?KkSW59pW)%9*s{ zm#&$Mo;F52!&Ey@y3JR~i{!@0y??05J5=t|%uwr3Nr{B>(DP<(YkBoJqB7N=j{-_6 z^MqF;JwvI%jIYUL(pm2J?}1XVkl>oVVIU#agPTx3zJI;W;dZv&+7@V3JC(0bxGNfxbWdk9_4=-qY7o4i_!CW>!InrO=aBD;e3<8 znFB~r(Sae)sL~C{2_!R+`8hW<8OG2g*4sE%6Y*dK&SW-h?17Ry?s!|V{bfd1+*`6* zG_N3TYBN9v)HI6Z%w9_-j~HJKflpD`bjXB}!DeZ;=fM_L+e;sWH%U25e*Z+s=Gqr8 z5;>BuI&3wVb~&Ov&W0NkNQSNP0=UIugkJ^I-YaUMmbir5acc z#$;WczrQ@$Ad;#3=()#;LS@eT{H-nlLan1EH>B3r%f>@Is=axnE|KsVw?zIPrrML@ zUG96~;=1)G_H%ZG^FRf{$*nCZn@+w63--$9txp4U*@<+^FIGB(2A4k%pv7Y`{zgC0 zDO=<0_n)oxlE~|9^(SR_%}Nz;Zo44g1BqRX46A(7(^FEYJ?aog;c)HdS8LB>X$V5&aPi0#cu5_eb3aOf9NQN!`p+VR@7E74|0SDOD3!92N1x zq584+-SN7v46*0Q-l?b-&(B>eR?sZWJk3_#6tF>>TA0XCg;5LJ5I7Tq3wcY0s)a

o!6kc0EZXIEP{*D*Rom7iaC=fO6XB zE{`XVM~!ba7V2O+ng(a@i+r<3XVdy_m$g=N?2@RfKvn(%?2K{RmTMsg3%dQ-W`2E5 zW7OkgF55vTUZ^4*mjJ)0(cH{X7K<$+>9-2w3!vy^qC6{5&N0VI2e#mSzERg1)T%fpIFr$GZN!?8R;5;OV{!T3P;&(-vF!|8Uy8zy0O3W#h*t z0-g8*?tbJ3hJ}AUvnTC7j>+KGtOP&CvM{wfvCL}K^TMyRN5|;JucMtECCR&lD+Ra} zr)iOJP@#Y(mEaGqDvxhW968?*M=z%so8j4$eL8-LCz=6E;~+}DZ*!^3u~O(e)s>$v z)E<4lN!-8{>Hn-?!UfksGBDHlH16X^x{s9Uvf-4F`PHLnKeL|x^0pQwy$ZYaEKUzj z4w!YpLx~u*S)nq4=2_^;)`YBvR$;b8!5!fgUJ*{Jh&IgnM6wbwZuMH!_avCQJtjeb zGuH)TiEE#6#VcOBYyrY~D8YFb;po^K@^=TOqimb6xvaadO~V@~jpQWW+PjNXUl{lf*oytrPt z*LmK0D$}jO7|RdS372kzzaO;xT~Kkr-fv5;dpKDVPzr^U4h9Bq`hqgk`qOM{sU+Mq zH!RhT`1)$`bwar^T_7NBfsA<=A5$$vX5x(D0vOePBhE3RzHI;QZh2=E^e?tH`(;;F zcID%gYTY*yN%X_wp64lj2#8j5v(9=NKiL}~8UooLh#cy$nNe`0WJl;?6>|&)IJ+1H z7=jHdsdr9K6)GIAXb%m@3fVI_W{U0O=AdNqzJPZzITNss`kSyhpA=03vQZ(~j^Amj& zskF@RGb@g`NA@bX5z3|Vx=|EOAuI5`44pyAS3CYG1L80 z2bTG4x2eUOK4-*?fHxPhpl2F{Lji-3P!Czrsja;uFdMwVmtUwXWsH3)RckE%m-c8u zE>fYD$k%{%$7Q)t-?QckBlu}FK*Jb0rFB>(DHN$!6bg++(VdWN#z>G1d>naOXJ@`a zZ2!&0;C`Z5yCC_+c2OAq2=~6>Jit)+_~(ew?`evH+@5cah1=F8;aAEoZsB~RIsJ7w zrmUFPbi2-G_Ah(Q<`6;9P&`d^q)Wbs$LhxGr&S#9-q4E=X|~C1OAPYHXHU7Q9vDB& z^qAE;aX zAa$x^e>c}wqjk##(qT=qAq_gIz*KJXO4pv*)w24?QaraPWxs^0(`^o&xf3~ynclTS zUo`(E*c(K1+f>lm*c;pO1k3~SQ?W2!ZN&l9EXCSGojemq7#MfYv?kS#67eIm%Vdx~ z^gEjBEXTSc0Br4$W49KIg=W-ZzfQ-spE29;9_2cli;%|~@GVhV$O~qUTEzH-a$=kP zsZwgzpZX&0R*|aDN&I(LM<_xzCW^mb#qL=i7Ys&Jp0&H;#?R!Z?%D0u-3xu)omHim zeHi^FO$nW}vx`|UJSEy^OzcZ(%mOd<{+2NypK-oXDb6pJe{jX?-)Js^3CX&5B}=+G z?+ADr6+yVd(_HS)_&sp_{rA}U+lZ7%E&8+up)DU^Ve>{xh|k@9Bro$H_;US;XK$0* zx3RlSj@@akRN+MzI~vh3?F>r2KVS?Z-0889K_7v@`IP=PQZ;av$&Y(Sx*&;$A3zpn zy)5+B35g3e07o}IMOUZKc=d9bqSSWh%_%s(wI)DLt;9kw1g%dTszG2(MJuaes%Bht z^w;D8H?TNu)7O+cTz*w%v!9>kEpZUn0uVXajBn)SAuLO;&lv_*Jqm1%)(XRdkOAmK0#0QrwEc^}&IH^Jz-gBy=GgJk46rOI2(5V* z12>1$zA}5EEslP>Yl@ z24qhn=xJJd|Gkh{f0DU%#B#g$O-FvK=5W)-{m6C{^Fut;o0}pJ&a~pS>~C4u=lz>R zuEgVhXv*UAsZq+GH+Jokwac*PCW>Fou(U`T1&s(l9(#Z0?cR^1?(KzI)vcTsA3vi8 zH4Rxr68Af)e58hjiMhmZ5%{Q=?Dko?GyZ&DCQ?JOr|{GOrT82n=H;LLkOf6+mea+1 z#U;7Yi8m3uhso=}X61$Hx-?%UNaPbENdf@;v*>Rcg~cTT3xoUq-HL6x`8LCbZ)sO% zNxu+oAMrlKJd>G+`$95xe)GhZnGbzr>BR3yj&<;uFrH3NIeGYdJPn=7)XQG#Pw}NV z)xj=kl)baZ7qW%*NBF8_y`>v`9BY7T^Bs6@23ucLxF^Oa3uv1Qep1bB!GqMUniUF}mtpQVVkwaR#z8?yvSz838fot;@6;GA`z;#x z?7L4z>eVU^m--+eR zK6RcPPIp>`tLrx60VXT~MD?1sMzbz0wHoueRxV}#tW@+z_VWfy`Ez~UWs7wXf!?`b zqLedj_uDfDb6}xoa$`%>Z)-(*LNCG;yu#W={LJu2|A40;=L0*spvbAq6U?*alPSmU zJz3|*gMjYnHwl_EP1s~gde2NJ+kQ3HMY>%)=Q`aEpt5KTz`no6Nh)bV93E}q%(qd~ zxhm85i%op8-8XufxIUHU2EUVzm}FHQjiZ{%$$`VlZkT`dMtn?U`Dcuzpo`^X4qQOv zMS5?>ma};%TIt%`IrW>{CEY59LfmJW=kaAdLQ(#^)ZJXq>|OazW-O+rTF4@~KegY{ zrL|s}Ye$sx4~n*$cY99iAXM#Zn!58@6rf+{SWN-q_!0Eq=@yRS6F(E#b~*njTd{B^gIW`pGO7!?LzN6kd|M(H!yqR5llfQ$GvIhT!%aU9!o8sxn}-utTDhE+}sSkoo@NaA~{HHcfKi z@uzxw!utEqOkLAt-$Rbv#Vl>VOwg{p_qSdI>h_f*{hD_v|xuSIqOGku;w03Q5oS2~hqRltmS z$dY)I&U0l1xHVPbdYdhJp)esE^u=c^$4i=a{IY-FC&1yDgX_i3Q@S_1-Nve~!^F~f z2xqj_v4T)1lJ3e@<_;j%n#AjugH$KARZ^%Mup1%I^8UxvM94JD+rSiDd&c3ohO0$_ zAL0ZFQ#*2|4VF@ekZz_W`;*Sp=uH;YP+ZUQ`fwO~?VC(_sKodsxudB=&(M|jl>0w|@w-toJWUXwYgkGIuNE2JQ{w2EXk_H7z{*1e_U zySbq{7d-U%nME~sCe!Wgj1KT6J!}j-zo8!K&l)!me--{zU~=mE5!DkY>|LAYE*S&s zim6URtknmG(6%>X#?Hvc+>sI%P1j@O`XbE`DCwTdi39VC4(uL>;!$ z`EFaP)yk0R0jclnS9A3|=Rc@p=sq6kB;OsIo(el7-bP`)I+(u>F2BGS$wj_O36-1+ zKws|MNGsq`bR9_mXr;Le_vUkEmtpZ{Am`X_@B_Ny<(d+I;<@!TY14LdA@3An%f@6d zV%RBGH$6!W0^~L_PnO9!7*M|!Lc9o2zMsir)^UAx)l;{5X z7M?pI#|xo}8aiq6)R)B)GkeMso8=qC36id3%j@3}ASdJ;Z(b(jJsES0j7|{Ds9-cX zo(E2FDySF&C)yUh{vjc%t105C?TviG!WDBbUcAVkYfSPDB3!QwrqXaZ z`VN+=%S?HB7Dx}b`K-DIi~zt0QP4?0PJ()yjTQdQ%h?Ns^~RoM`L@mgGs>rnnZXsR zz71^k_6Nl;S7n?UK;#DCC)LSme&E5E_2=%69%*rRuR0W6?)UWuY5}6Jz78f!%P3)G zS-y{16%`cT#GOoSo?d~R%fZHt#<6xQTGGNWR5?NCbCuVh9w779cv%knJ5=;1+eo-t zXn1*Hyf>*Re#Xs?il*y=i2Jr$=|#+RwX!&eaglxjV6v^1`uUJ^ZwY{4IEfgYru4q= zVhpV;)C8rP5ewF>s*co|)jrh8$!rMKr=L}Ix+3&@`0VjuV>&QYT9_X?Y^BEI5zgRyHzC}J%B4vRcnJ)&0icF%lk`bg$EiH z+Lcvg4!7l}@G8YV$y4ye4!3E!c6+wDBSmlT-h1`?J?XGeSyLeszyUgoTth`ywi@4i z(*e=;fnGJ5`^h#nOnS){ZA?2*104Hb4Uh{;bWr^eO6zttYuJ3FlqD^Xqbs_Z8_lxl za&`qhAnyVoy!uu|&U{nUd=@Sz*5TPeIcz;zwX5-ttE!FEm?dj}fDW32qP`cq!z zIJI;zl_#y$GC|}jPt;rcwM6-V1i#C<7%8PrU)V^q#PE@kuo=ef$r9akhu93?)sQFl zCQCBXTP&Vm!)Z^QW_%M0w_Fm4+@tQ26}?LS&Rb+7 zu(RY9_v__6ue`B~o%zH5^*SR_%3jv=v_QbQBUE+V#>VCa@Ch+VSJ^NsKk-BP!jSfp zLqk{UA(iJ=g?Ufy@$7AeQxH?vtd{&|$SN%rgzhd@O!(nvI;xKt0&{n6_V?=sW>9Nu z6ZFL@YUcgi)#E7#nC@;#rL~$c)z%Qk@;vblZXYrXynoRPS@@!B=}&n#H(A_KXS)+# zYrtu@;D%psG3OJGc6$wWEu#Nz0Hl4zWjNgB?|Lxd>w;-qmI34`b zAA4WpSoURJI_18VS0zvB+YOAP5|Y-9hF!t~0JY21RUo~#mlPNJO|n>=K^meu0|8Cr zLONKsw=-=`n>Z#KGD^~Y#*%$awX<~2J4H1N-8L@2a=b|r-(2T^O_hEzt}s6A^4_`f z($GFxgQzGS$wC*+u%^q?860r4$@M>6vHNsL#{>tX{ zbwpB1P-}i$U~ZE9mY`l=(^N5WtnsmI5lz)D2ik^^ou-s!&;y8SR4E-TZ9R2)>h_pb z>d&k?F8L#4N_lqsfjn$Fh0Q|d1CE3ZFSrw>Ygu{j{#@g^7uY6z7MTeGzQ#thCBC8Q z7r$QK*%BWNtj5gn8Yw7btjCzyo5%4&t7|u~wftqkmdF3KyAfCPJdjVwLq9=W!w7hsAD!WVP z^HtR%X4@_{WNkDNgxE1F3}p}@bIgdKA~LI3780&Aav0O;3@is4jiPv;ELBbFJPS`o z4XI3i$D6!Dz5U5M7BKCfKI|*r9yV^Qd;3g9#4-y}db*r&>~IKc9l5xS<9I_n^O>OUY25!1b(#4`eT>XG2HCccMSSt#1jnRm;z*dgFkG1;-F& z5h7H!yhZwrqWa~-hk3$oa9H?EU6;4li+PGPc~N+1WefK(&UT^gN#cS#!5t7O1#7k& zI53FRiy=n|aQT-2-d_-Utn}W0TjuQ+v`)%@^m&>w;IVMkKgsLTaRJX`;Xe5tWSE3ktK|J>E(ON*tr zUq|PuPbN)T2T8?40{tN2`%MB+17N*bA8)U&kpD#0-+tNB8Rw9_)K0Kco8BscU4a+B zHw&2bS1oLDIlZ>c6>eCsDtI#*)uDwcR|8GWRm*)#A_RObBR|E)Sp+PE@^NWpakQiegx=Zcv_3GRycqU75)cq%Qw;gXY>>Ua!x@HH_ zNj3&LBHWuF^VunfE?k|d(eAEWGa)=$Bw;Q7iJJSwbKqIrJLR+j5{2=0O3PK<1Nvi& z!GZQ{w_D;f9|`hG+h;zI?IM&cZ{7-ZG1LKFo8(Ikmap*}HN4GV2i+)eF)r7Mc#a2V zfDzMvwW35!iNJA^zyP~zOse4UYL!}9y}4N7-q7O$ld%_~^Ao9kqr>XjIiBsI5L$~y zzt(*7#)`Km_x6HS-mwNaCw7lhQezF1JErr+zg+*EBZAld#`>ks={HX|e%sJ>en^$QrYkorcSv-V}+NIvJXGaqx6SgW^TP~ZR$Tr z9?%A0*K+$S<3!gAW|K3y6`F*P5rwe^*U4o^rwOQ!sH;DpI)ErZM_H#ftIF!d_F(p3 zEXHkP!6$-4s*aT~@3aSM*#tKpbe9x0R)TV5@_q1Rm3%I$bjGQE_csIz7-`(dz8T*0ZnTqxZFrXqS> z-7*OQza=^Ba^--EiKF)U1q{hm9Y)Z1>xUldFan7|*YOU+yKR>P&t128_R&WGNqTU- z;e=iIBy-d7#E@iPIwEa?cUHCWG5bD(dsFZ`$3sNeNE<#3%zyRNvR)#_rkb)Ne!Uc7 zoKq+|zMWoP;({zMfI08#*AHzhJrbnFR}VEXH))Gskz~U-A+i*|TG2>cE^aI*|G2-+ zAmc7uQ5ZR`d{Q zg?4XoaWTsFG*K=ffg&OK)8hq7Kg@$0k&~9TIB}oH9#}PCi;~1LpgnL*{m}%ORd(MP zSasXD9;FNjxL3>6Jqhn$bGFN+C_{E)N+#HCWA7b_!r{$QhJp3| zWn)v!MxF#DHoMd+nLhJGMz>cO<*h=-$l7R*=o&;?JjW3;HTE&xX!NSO05}hmavJK6 zFnGSjAHn+Ch={ziX1h9Wfr$YNeIZH0QHUI9#2K3QdzZOyE0-Y+MUV=kP`;XguN@P~ zaDeA&1Jb=T92T4K)yPs(>IZq|{vJr+70m)SVQPQ5ZM)<|q#^9wUqgT!8mAQS`+FC3 zu*KJJ{(J!VN>2l)rECIu1u670m9H}w9DK*Q6Xq;WIN#P0}-FDZtA5!+E#C7XbDI0^)T2^*~h#PGB9^ zxGwb1W)P8JNHlK-JOEL zx12*hY0jL_{xm1FMFn7uC*)G|WO05!84OPW_}UhB!5JmF)cAORkY(sKGXhd5r<0Yl z21INwq4ZH8P-VTQ2C=0R79egGSm3h$${`e{!60m)T8O zfJqdzqk$JZBP{X`EdOVd+COi!V5`?!Qsfc>dxNi-V|!eNZ%X$-`eS){d8zBQ-K*z@ zi_>R-(QGr|u#XGYIGdJT6D_S|tJICS5aq1DU4pz7*{I*i13f*F<##JBroq=%{aWu& z3Yl;@Uj30Bp%tdk)&zF@l37B4DuX?EwgVVV+#A9-hY#rCXQ0*>z^r>z=c+%#;QHw3 z$ZeFAQ~Yly@CxzpIeSO+`b_Hg8?7uzK*lp%CCJ+9v43;ffRplc9=2B7IyqWLqv{6!*=Ec@$gFi1$y z+-^84jfUIJ@()VPR2u%dxgqGyrH7?Y|GBx}z2Hw@pv3qLPhI$ME<9iC?;HR5rl*2P z`+t6IaT30kW(FLvo2nyBN3pT6T;}R{X)_|7n@8A2l{#k z=qE4tPT_@(hRC6j6k7LyQ4Dp_<+T90Fn*6ow#{iE22ieW-Fowmepm1db@lk`W`)0( zF9PqC23l~DO#kfF?-pF-_-DX2^#D_I=zv8BL|o29JCtpxLN(+G=X1b1C+H(Yh$KOpKhcfD=G{XNF$#o)k5<@Dk!__WY0XoNK=Qp8*H z!4&xJ1E=v1%kAnhBK4&SlYMzi(hh1Y@-^Db_!kL6u6)eR7w`2^22F_o8OICYjwJT8 zRuAc?N;E3E=0{%t?Sta!$r$0KItqxIbAKKdk0AUeqd8z169_tSP*PFJQ*CmX194$4 zVDzv$=A@g;uO^Vw(sq4~y1d>ZWFP-?4diflA|mbe!ognCfBFeVG&~-&77|}j79l@^ zt@(J@5a3kV?EY`~aTt$uc5+(G&+??}yEr-354V2#VmhAanI-(Uzr6}Y+H7&>ee%in z&!m~Yi)6XSJDH+vDg+{pm06qWl`SoRRrql3U^4G$r%gWyotf)*1eaO{C~YqjIexev z0OBFn#ue4ycB6dd2AzC_^@~#f^ulNgPw*Jt1Dkpw)7{Y=bf?ozJ>uTsfMhfd*A|fG z8Df{>T%cC0_3OXwMT`mBD-`jq_Mg6S$O5MY0*`qR9CVFw{vAdbjbQZPTYcI(%>h){ zT;-flD;O0Z;Zp``lH{W)Ig1vMkHNhm!KnE|;?LUi->Fd=ppy~s&di24qeo+q9uqJk$y>Sb`?sQOHtNtW_=dtn4aM>X)5=(|T6 zyc_0sk(BiN)!u)iQ>tx9oxRd|?x13!i;eVSuAy^|F1(hVG$TSUcetvWcU=Lt(}Fh? z#r7FxrpfuaeJVr|at4;50B9csSUQ@72!hH57C3p=l024+ zFw9M-N{7j1k(GeU?miX;< zjeO2P*=P`HH~8;3rq_iB)+y_$rQhf-!2Aqdtq|K4g>QWTEj#f9pt5>^Q?-5r;AaWo zNx=N-6k`D@u(I;BvwHuQIQBF?;2D<13u$$8W5J^^>?v+{d^dMHTt8CMkX%h%Yx_Zj z8=h0s&o_gYM$d;DeBbUr`siE*$k;bP5(8y876$^=QYheGlbv1-9YvmM4g>}?642?f?FV??-M#~eXyRQ2NHZ2#UIyPKMQF^_JIa%vz4C~;a;WY;nej!qrwu>m52@PUg@H-N?FwjAyO9lxz^BXuXV zf(~aMx+|hRG)oq2J{^(k8u5~&PWC*&b(u{6NX9uoP@n3!PS^-GS(2Eo)zC9M?M^bU z%}ZT^ZtJH67241Wd#%JGKpNyVRP$BZfb78JIQ+r&Kmbg03D1LGeO--t5K6pWeY$u( zBnX++Uv_i{J$K;KWh(G*NZ?valIH$1J6S`!Aga^=LduV$G@7a)^S z7NDX)`(n7)A#vij_;adEoqHdjSl9iLC2ThysmO#3g#bG*w#>El%d3j;fQq|$gvk#f zQg5sgs~ek(TklkiRnZ=Bg^3#|(T=Q)%x)=%QLiK^q@_bf+G@KvNx@K+AU$!if8UMF z+j6;{v^nxEsLTmOs6hJSi3Od;F0%BL62I8|A_@bBFc(>bSzwp^zTF4e0r;Ab(6nEW z9DdB#X|OY653OT^F_^u4$bYp~H^T0}U zBlfL1t62{20`L-gp_in0dAt@6vdl4Wc&)?>T0oq2lCyjw2kY9aTzlq*#fl%t6D7J9 zSN9WdEeQMhHG;{6=jq8D2Ch|Jb#`|<+c8aYUW*9}f9j@*(~8_lW&X40Ii@4mn?oft zX)T(xzpGdmZaHYaW)5rJzj@eu3Y9iJ?KfF48)o$OH2$hxqw;qi5cA01#Zj;IOYm%e zEIgW{*!>+}_tVQI$Gt}&EQKSENwd;Y^7^}@fh?`&jqXG734clPDteB(9JI&x(R(jB zIT*WD1gQlee0!VuthwV^sjR*hoEg~Fidw)E{qvxLpQH~(`J2zhn^eMNBHkJDuPaPR zuywzw+NzkRHl>&p`;g+_Ec6FJ?ryJ>sunBFb3v5VFy749F?xQcjri_j8bcw4S{xdO z#BO#L&Q$>4|5!5$IY5V|bs3|^y&9sJ0sG(0;y}?eAdcxj5oO}7y1^OX^=y@aRUpuE zT#GS~L0~^h+`4dUzbj1}vz%$Y5+G?h5=syNVEP4^jzdnw5`WOq(Iweu020hHAh9Qv zy}SUv6h~lso>^`rbq7W~`l_O+SWlT6DV4tdUT~rQu<_7Hn=mTTgStW}{noAS*2Z;$nggsBQ23%AjJjzFJC%>D|=a8aDamnM;W zl<^m$!l89$4f%_nY?d8;_0I&=LS=Xw#tD`m>q<}DiC!N>N+N|k7W-TfC_SAdINY>T z!Q}7%;}^OR4KpTPb$7!0esVc-h{dOv-p_&`E!aYf`fgh$=eW_)k2#&kzR!o%P+2LS zCt4IoDe{J|D(H+wRSfW`Juo-5ET4sdK;OtS5QSWR}ggBPtdN$6#=jZ9KUFAxkp?SvV7U2^-gsuVu^x;}ES! zI+Uj%st3Oe)6A0hF6&Di{;b`N@T+J-EZ8-9e2~|WM{nNcAd}p`*6_RqatnKlBGC%2 zLCc#9E9^Dip#21e$v=Cxwig})we&o%->o=lBcizD%o=|jFV^O-_=dky=LXce`}?7z z$OKKDqd3#LVwwhQ*-}lg#bOp`VFS7Id3d6tVnf^Wq45iDC`QLRhKGdy#Yr=mJIg1A z^|n{w;72Ylwk zT}{EMJ$!o8BAY&fRI{c$2$!C1MhQuWJBU?$FGlnx#!327Y_k~?^Gfqw> zJuNrKa{6q8$TTSPT007!$)>%a5+{TUtV0KBcfKJD(b0kp+sA#YI5@Twt-Fn1<~pM$ ztqSxG4JADPG&D*o+qwC>^}db0*{&la;ljDp87j`})D5msscXF_siW%yUB9wIY)Bmk zo| zLb%ooX{%Wng9oFS1pP*jc+4-7BE0UI;c`s-IiPy#up#ivX5?{lCP?7^eA+jvH?@WG z_P*wEo|LlXx!7E|od9mcxXr|i3VA~0ElGXSH*G-*t-iYgudN^guS|_Oq(V>U3 z5j0Aq_cNO*X~eMPON_lwLJ!?5M&qaS@{=ng>O zCtPG|F(j@jSz+&OoXsAxDQYxy(uU$IB6>(ZK0d*4mKZSoLA7fr!m}owCp|pZWsptA zF3?CNDN=(rIwu|P22&=vg!m;CGzT3lAZE$en`*EpR#3KP1@HB`yde%tRPqZ+R32oOt?T-}!DU*)B_m(e=VZNyJ@ z=u9KIFpz&jR;~OhCkpp^uz=ii&Sb^RiJ!f{9QQ8>u&9FkC?&kTCbm90XT{H#@CQh5c{FP0+qdhNI z6^QlwH;^#kxP`l7-sG^Kw&zkrY|bS-Ygdr!ITF%Ith$eEIx#kWlTj{_K8wLqbE>8v zO%%JGdyf&%JM2EK^n@v*bl-OyAZ8&aWKPO!=Vn~$u(LWR(w-@%rAFK4DFa8+EafjP zI8SW1KO8*h{pUX5(nL=De6iJc#^44D(FrXz!CS<|z^52&`SRpKr%eu7=kVS+DLuGE>5)z?`RhTOP^2$mas5XZVIC!uI0Q z_OSIXC0DbGi$R6)CNlVIr-Qgecl3{Huj{+nKqoX!a*pWzpq~~ON7u%dA3tVJO7JQW zsxhSnt#qR=Mc#48>OSADLxSgpJ-DawY8*wd9jv3P=hQV!1)Fg%)1eg4$x|=cwq&?^ z&WxN^^QNrwM~Or1Q{^ciH$jpmIM$M1Ac;%Dpx@%wx^q0YCO_;GY)zN5zT&lmKddqJ zNcsYY9*hv5nqlg^s0)FcM1$#iJlL%ET`V*(u;(15*<1>*d=pEG0^PH($~mHpdWOh3 zHR&VHQW0A5>gNwPXUesaBQ7=X6&cygQy;564J+zJXgqHx__R>ZruMcr=O#`$P0HH( z9M9!^J#{YWaI%G?JC{P$%J$yU%zrdym;4`3rC6gaGjrbkrr z<3*BlTWv9LmtF{{r68zpG|M)k%WSRpQ_YH}Vbr%vzfoR! zqB-aEaJA61R`g7nU(rD9J+Ate z6h=$0`KP;hAP=p&E=#rA_m=lBaDUnm`t>XAaZx$KF>jFPV>J%y@C0O)lPQ^Cl*#zqSHuEHyVJUX`SQYx2eLoJw*}e5?|zj?@15`|UB47vC+qGr z;Mq#M_Zt(!?x)l5(!@3#QM`cDV7c`u4C790G#+I3c!u3Gi~XgNZau-qj!A#`pl7yp zVNT9ud6d>Qtn!ON65FWG1s;ctqVtExBMWzzA8suucUqC{NiFCut0?$gk=TTEB5DNi z!|x^(rJHu-zP3Pu8dCbAY$^LIJI=Xn+6*jIHv+T#ZssQU+e(EfBvJ2%XVB}a#vY>I zcz)U6^~FzXetdnt{z+LnM)TEA{|*Un&(kpaP}9*&W%flpxkJvHNhsfM$l{;E_q&-6FM#QmcrQw<<9x)W zjK|A#ZRJ<@f7p5psHnRx>|2m7MLGloDFJDuOG2bU=|<@e=@=wLDMh4)5+syTTDqG7 z>28Luq4Pb%?R~$``>k&+bg@{<%$)y;efIwC>*`)cxf8JyZXDm+_Su8BP4f;uM%gA_ zd(^hasDz6X$;IzYTOw8b6NIYK+he18Dn(NNV6s%oaPU2uuI}T(wkJk3mVJqyr>eX^ zw~mdK#gF_};GDlFCACyOggC+j0u>)0I;_uZe6rnL^hir~fd-7^>%G%2vR_(RtI2T% zS&fDV>HHhwZSN^}m%HPWIVN%`;OvNU`w-ro5>%1nrLyc@c11mR+F}w8zlF`a=? zRBm8<}TgBm(-3a zZ*q!7i`xOc1D=+Tr_lIbrS3U>d;MU;>52%$uGa%sTt>$eEt|8WY1?pP??mFvY?c2w zF?6J06iu~m_kOCE=Ut6YuEFyvaD&h<_TCGr`XX~t0X1*C;%w-Gc%R*RyvmCcaDSNm zNrWFk!Q_F=An7YKpSRyV2f^0W!G@#Yq zqb~IFygb8Y+0Op7&;Ey#RyE=-mCr4*(p>@!Bd_{E68ctf=wn&4XV`Zp08ta61%BQ_o!S1^PX!AgNs$Eu7LafHuSG zHaIC#w$j(YzfQcnb!5-poJ=~CC=dS|*(=T!QbBCuAlko3T(_f)rfGHRP;#}2a(y){ zM1QbKnqKVww9BYd!B01*nhPV@w%d;F=y$T4>N@-`^*FydWS7dD?jaBHgEBS>eD4v? z>bZ&g(FbtS1lvtjxs`oGIh`kgUzC`*<@O|cKB z>8zaFIioh|!Nw%DvYUTvqa~FA)<%lG#>bqR;=92za6d8JJben?Sbs_Ht>;)9o)}F@ zmODJL#+MQS*XVLlS2={FFu@Z1@1wc#Y(le|W{)h7hiB3mDsppi-bEA!zI$g?k=}Pc zI(x?MeOyIAHF_DyOtTt&lyWv#h$+!D|Fqi4>6*Y-)`|8-(Lrsn3>wZjIjY; z@Xfgcu=GZXaX*Kltb#m;{+C3O1>7NrvsyjPb3e9S>P6J8UJKcU@or85-2_AN5v=uy z9JStE_;&AUd82M9qDE_rcegJKJ6HY31HIJY+vWC3M5Lq^!ArTT@2k+}pT~V)Y-da} z9p3i>!4Rp2#yuyiYl0Vfe};+g6Dl~UulU$83q#$#Q?+x|D9(@U8YA+q<<9%!({;NG znTjlhjYmyQz0%?l-gnxCcrhRR4hn0=H4b3`(P{%H_R{5>^Vhtp#+j9U(4>9P>q+JM zCaF|&cLo$Qqi7|zkB(GOQYK5((<}OxSXwkQA4^>xM5fu0A``WP$|e_w4HWK>ifoi> z)kp4wyn&(aftk(?mac&!j<;4flT=nFD$uNWu4fK5zYKCuk8{-GZdmJ5SWW(dUa%eS zX2G8;$)5xx2>;YQh)E5Psg{N~wbSpo;fz;3eWrt@CZexsx9vnH`tGr}-Wxd+zlwIguuPO92!Jc6x@) zDIwlJn$z&3VCl6MxMSPi*i)T@!^z5xjOZ zIL}m=gvr2a21iN=IX}*%8@pvnpSnp-d9881f4W6V8nVtW$d=2?fq16IiDtrxyiq{t z7$v1rYzNk49t+S|B^IEyv~7*wH@Xy2%cSg2Cn&yN>Pt1)Fxtuba}aTME2Z<;ng>Q)ol42usk z$j)?Ub5zfT?T9!2jP;xMKB}x_V9CX=Bjks}d2TU~Z2ZJEhesw}w#MGo!F!ww1|lgZ4NHnB28g#WG>n@z!+ckFyZ7$uCo> zSFW!|LO>30mWUn-`D& zNg_xxIcf2xt6$p19?f5t_(=P$l{yB>N}$*$-}d`$8BpneSyD9~wYtKA9(sswR4E~% zD$TQdcwD96lzk~i%@3h4IXcsGZ3W+dGY+|8i zS@d`W1MYWx+PS}ai*qqs74nXyA?{si_pJQ09gKIL=@JHP9uF>!aRc9VNqVC;8B?zu zko-q1KMW`9UYQRE^OHbzPfAYUwDyTU5(mlI?hyHhjT_GiomYVM<_+P zt_;j=U_6)vz;+TmqTr607`1-BDgD(ESF9Po!^fg$J6;Zu*r&#r>V!Om^~*w!>4|0Iy!AB$fY`c#u4!nQsNj%S<$>{jyW}zSR~#0Xw`p4 z%|N6WRXEL+b$!Tjn})4$w0<%4i`Ac+w-nKn*H`7qY~5S^RcX$|f~#HCJ%W?JJFMrY zD)ugZc#U?nv|5OqFgyV@I7kCy%(+C`vA?I{Vg%xi!=h&??H32w*2f*H|FTO6iQLE% zc`CT*K2$)%9hC0HTYV}}*#v}ieXKA>-o?R2Xs|p4Z62jz4Qb^AtzX~gU3W;#`w-&_RoJ?m6Fgbw7P@z-2V*vUmIkr(`>{8Vd(S70ljd71Mpo{j zeVFhQHdRzq6tK;x%AVxyuNEFv@TrC;9=#~EmXge|pQ`KOB`(8fXJb4K=GFwAL=n35 ziHRS#%lu(Sf<>|S79;1j3utC=qu+Iv`8KRvf@}d6KDI1uMtg##fAM^P!N*zQx+Zl& z!h1t%@yQ&7*|L&Zs;~D5bG5ICh!6_{_0TpX0<~eB6-UwFy5){?glKd`39V1G>nh05 z`D}@Lry`PQF?_ab%J;@uUH*8t`BXbDPRU!3OtZNCQ<0`aeXZD#Oy{6KryN*utT9;9 z^O$if8NDdo;asnuyHt9>__Z_}W_J0<^FsY@NKoajcuJwOEw48tT+6Jvu=@Hln){c| zvi?&c|Ed$zG32r8#wN; zxvh`T#uHrq&{sQ-Q`rNt+?8_r>h=6ZwS-N|Kd2GbXKcupPswrEr`)3pS z#JoF0l;dIj2bAmH*t8d1w+=KyPsTjg)h6D@bF36$=?U-_2>SQ4DW zZHUV4L_u{{*VwZ$?$gq{B~^-|zk96B_O&2-qk2;HrA_((+l|O%mvxsow&X-=?m( z@ySOZ`o=rZ zfATR~xxN$q^RidZ()G%0fG!Lg=za@qi=;9KCF}I;OQ5PIr$)Q_8gfeJzZ z&XDZ7{kFH^GS4fmaoObo8yhZP#&Nsk;3cRH(+dcU*q84_Z@ozVo7kkgi-fc2qLL>5 z;ePI_p{>BuqQNMef}Y`Q&>VgGFXdBGm|{Cj@%zoz`)`Wz3v-QcnW9M+E`K(cQVSkW zx&HLrGphmRW2?dJNC^SWzi;y{B=8|!ueT&YGUd%pnf@*dQY0%FB=yV=RtMVN3QyiA zAqfHXhOZjmo?DF;rVvh5eM!jx%{>+=KD|l&k+&;wNFF7eUyaRzX+U`mbSWA-v9Q;# z1f~BHd6INQF~u|;nK|YEOv4j?2&liA0TDp*|A)v+=5~cA9RTC%ggP!|5E=9Xp=xS? zsMtl0fM)UfO-sPc_$b#I3#di@GsJfxx0vX7Pj1nO@*5&^MnOq|xLCbP@@~@XF>wX% zZ$jkh7{1^8llk?sZewb~4wzBNu_2+ML8C&koVl5FsoRHPdU?%%6j0(AV$k5u7FZh+>yE!OhHcBBWZ z2@o&6+x4|;%@=xGNH^-WrHpHbLy*eVK zFJp7>q!Z_Zq~0spS7?Fd)2?on7SsCa@}AyN$D<7#%YXj-xhV6piT`&Qpo3)~#T~I8 zjQjx_HUt$w6Q883Nv5g_61n44qi#o(i(y!+lU!;|(mc$}`U~)afBP8){Lk07bYFt+ z!549mNL<4DE|%Efs2 z2`|X)eO}1ElKGOtdOvT#WF6?qkb+4WXR)V?qYGK+2u}HnJ2wgplisr#pQGC@0<20K(R;DxPxDw;Gjh5vqlT?r(OKAVs$d$TJ*(JsJ91(i#S@Ndfw zTZnW!r*Z<7Y=gJrE=$iCa&xkl@}pH%Ri9Yw61Q0ssJ6S}0sTRqLyz^LPQj#1UD45E zGJ)cJK;;Fk9R1HnPy~l@!+nvmn~Dl*SYR6NdMcfww2tcY=R6y2tPwyvar{N23u~oo zayfAKp#w$@Ev`Sxd10bN;B4cibhl}r1$I}iMXvBZ2WI!wt%Enc3b+0N%#g$003L$a zZo8V;%?!9^x@!{TtTr|ePZ89ul}o0{oB;kI(1tpwT>dcIwK2PSbXS}B*h z%<|8^0RBdMjB?3*XX>YBH!^ByxW@jhDOLLrBh;sqOjgY@1*ssRyEs!HaQ(?DsO!JU zCKw4e)-<`3?>7Yiu$iMBrqdX?tK5_WkW1SQy92Mz?ex3b&16hNdzc%4R%vVRoyVYs z{&!6}>0v)B@z>k?;d1kkrBUw*8SrRa_{P@1BVXq8BNXg)uiZZiQ||~FxJ;YS_#CFl!TG~`p2z&~p$U-o$p!rc zsiIT@b`4)S3>Jp)zZ zVgQczQ$5eC{guJb}zFx;$)r3~IGpj`bG z2(BdXyvA8rTvQgV@DxGx@Nxr_+mfhDBmkE?)mbjl>rSL!0Y}( z?+6JA{l_2k-yAwOXWlEUXC+2F)Gyy7e={00_*Xfig$Mio7bko4@v*=y&nqZwFWcBi zFpE~TwbAjqC1dCK!In;6ABwEMCo22x`y4Kq!6rB&9@{Md^bN{WL_cD5hK1kra;Q?2 zGc)@-dKN`36a?Tn?^mR*T9PC{_gX=9R`T%;}R5gSLFL?aKw71 zCb66Wx@Lf)7zwTa$pa=8C{|s=B(mWGsL?M*(}>w*?g8{_F;3fv``9Sp(*0t$`OdZv zit_?$c}+Q~GgWkoi|c9A44?$fu*E<~-VDUiRjcsPNgBx3ks8QQ1EJxVH}t^9WxEab zbY*_bQC_92(rg)YMI;jvu+Z(g0*Ei!9__?J&g_8C-WwSLd={^;xtk+uqUU zg%fYoV+nq#GtdD8+^+aQlgg`9eAvz~;L`ShFUu3{NraD9rJ)4?(f2?n1H3DCR@Q%+ zJFP-sN!!SIXYaZd#4wiS7ou>e>wEo(eRM%^yrYN*+SJ|b9XR0mF$R_W|6PGnIMZEM zdZfUm0x?8HN%S?ZffcWf4A6FwqH_-}{ss}znE9KBDPO%z}0=~_ML@v=HM@UV1COf8XkMMFkr$@H;f@9iCN zmOX*uRDd~A0WsiDgbup1vSfx!q$7%-Y^5Tv*K*R7K2h*m5Pu%>OCwU4(i+g8d)S_@ zThjkSo71sE)e+hqvIQ%A%f{=Yk@b*@=w&skG=0;1!-wtj0KKESxXDK2RHvK`W5#J;!dBEvRbOE+Iy3;eWV74x{ukbF4(9IE|}*~{e9--*{j_N>#)3t z(!y#&Gua5LeoS1BYiW{p>z|+eGT=O^&arPU0{qnRQ;S4Cc82Za#f0hAr!9rT?_O4L zHa;zCKn@o2? zGMQ67n_ARk+pzE91kw5(5EfQ%3s1Si#2ieM^j;)=5kKE7Vd6x8q>`$p`J6+%`@6#1-~t%w)j40~bSU3Q)xn7R zfDe$nqai=hVy9>d+Njoi?;VCW_EG#8?cwH@?b9~Oy4fW(QSl`-9`iKJ_>_E-KrRjF z*Wd%8usZ;87hv6|Vz%kzkceUoc}O(_WT1})ot4Nxefre%3Wqt1yu%lu=5w!J`Wqmq zm~mcHON_v{zZP4*tq|CyNz1I5@x~=49+ya3n!HOz^#L3b)oJ0aAIOsRug^y7oq+oT zxgtfB2=nNs2AR0AZ?;?%b>asUUYDS#t;Mid;x|EI%X`hfOAT*`$qgE^$pTy@p6VMJ z+Sb8_pq$$hgO_3|LZ5@ZECbB^aZgfGhIbiW(cypKOoRyaio4`2IzlS;d185Yn~TTg zs9=^6^+ebK&{r~SN!p`H0=_;2@q(o%s=>h_3E4TV*-5^>OsA*jE`1&o+OsnO*M7T$ zU|q!q*N6CGP;4HbwNW|tyylLbEot(F(p`ei6XZ1(X~3Gzel_oCqh3E)H_@s{UDS0ubjh_z;dyy1ELZxJkq*;!*<*7U)Vxs$I}{~@ zyp5O`iJwXZCAryrps-p|fH2l0?+u8ccCwQoX*p@(I%{zfvO@CrN${b@3`U=yCku(> z#nun|lKQbrHUi##w;XM`I;~dwsX#JRdxD2>30TMiPInRd&c2uGzLVC%p-fQ%oJ-w> zx`Av*(?K12B)eOT#%9O5!viN1TG^}=*w$l5UBU*x{U7#S+tDpNY5)4X`+KD?+_-pk zfpcJc-c_y0I8z!s%vUIP#6a!K)vAcShJ>G`w< zRMeEJ1qqwnkkVg-4Ya#ww*iyKj9=e!%- z^ybunrMz4J&14pvn8nIlu`v<#NeF?6*McpyV~6(o1k=c8i{HR=J|sOxv4F1mGppt< zGDfuh(ujG4;s*CEKCk`7bz7)lp6ha)wi!6wEPmO7?jyNf z&Rl#<0_p~kj2I};e`2mKsrUu=ab-gUXE&9Ee+^;r7;|;RG6a)`3ssmoXmjZ)P~)~1 zIe(hr4=m{&AdychYXXVfKnEB=C_{X4Je1`7UX{G+yjLQSxOQ?eIg6uN+@4n8nBP3l z7?AW+7Ar#1s8-W{NW5PBx61Fk2>pNvNOe*BaeSY2SirGNNNAkXO7TjrkNVS|!pjHV ze*AX_%GiFVkr*!zuNqLv!)atv#4XJ#H{LjzS$F@i?O#5fS*e^!|q@3&G9RP)B_&~|0-+RG+PxsF%UDXJoykSXh6^k zGPIAIx#6y$`J#(}`&>Byv-Du@mAXF+(wk|%doRX9%(Gof?B;Iy6&Z)|8Oc5q18uE{ zPvX8OyVCHl{m)U-COp`%mf}xaqCB%0Nc4@2B54bu=6q}6`in87$w9?9^ObIhvXeTv zw&1UWTYX;3(jMv*dlZ5jJBE>R`FiI`x&6QH>5M>ReflqUwjytlQxd*!3$TvNtY68O zU&i&U4tOJ9_J;p1>HX046dMW%*F$z<&@F}agWR<1)l3lTD7z|XSHp57&dQrErBtbN z()6^P`)~?+d3!#v^Vbviu&g@!oh4ePS{rrP8~XlS`5+!bcisf^VUJ!Jxja9{M6Utb zV_$)5&fF(-9Ni~VPPdUQMGRKzf+d_6e6VG~Vs@KB)(b>)4fK^sO$p5;0gQn^&1Ysh zNZ{CA*6KxqsXR)T%|o%l$&K73b)D-T9QN%eM9J4BIEi@_&!QD&t=t432^2&a@0`*2 zSYAUqY}B(2RzBq33oq??mG8eQPi^pvEG|h)!2DJB!JDO5XuWfJaoI7-8OH(F=V=N_ zvx4fl&mn%mkg82c2V8iSXbNvLw*%IEr>zOn#2uo6VG|3a#%+RmqA){@_xqxM6gf{+ zdlV7=v5srvw)7ea7Ood4_6H{bDT}0Pn)q~SWGpZ70wzA?t3p--_q9K*P{f_~6t9!L z3x5~sMon^aF#`fk(7+KJhMJrbvk;6`Ajb09c_B>EVjusp$@OReo%06vg$n}p!etRP zYx`MSomW7D-Alcf%^`}RfOS3|c%?+eM?E#vf}p@HB8T)Ba|LT-J%Q1n``HX5*kEz< z(u3-ji9CJe6Vw+`ywrwXcYA5JZhr<Nz<= zUW4thr-lpBI*DOR3Oj@omji!c^PbPAX1%}2;T**rL;2$Z-ionoeaq5X&$Vd2RQtBwYaOsCZ_KMU*TKaC~Mr$-w|rvw1J zqc=wZ!@GLwmYr+EkhC+J77~Rg$(_WoGw3MsI~HQiyT3t}ulGdlF3b@s*eI3Z0mL{h z7J|RvDyd2V8xC6jBwIZm(ZeB4Ii0dYb;0GZ**i%CuAf3j@aihhD4F$BD>91&ob0TV z`uII*`pRNk;#r46CJW^^zdzM+ z*;eACo~E8=GDPDQn)^ogYu?qQAW{%pe%=G*IIA>#7S}g)=U)*qADm1t%i!|wA2jxZ z=v?y*Osm@g$(tojmSLl*8FUY(v*C_Z%mkj>?<@4ro!Y^=v&Ml)3h=bin^JDz(9|j5;x0D;g%i7h--1&#r zb!jKl^elVy^Sngrwz148$?T$F@q5DYsgRZw=kgz?G_0j+u`OlmAXgzbX930cT`Qy6 zvwr@(mo?;JQusb2RF6HWqXZAei z$R{P0e{#g@xtDhqeygzdy>IQV79eB3d3NGavF3B}Md#Qv!S}Jr4m4%^T$eTRnMlHW zWap#j^0St!H{`kupvb@5QkDBB8{^&^i)8AY_HU3T-?xxR=b0tNk6#is zSUBg1Wmsc&pJimIqzKD-_Buj6i$IS5q}%w)jCy;#AiI(v8I>E|G>WQy1m_j;W`UYg z!J{gDNIRLf@uCcoUs950cjwQHbn_5%WBc@Qo_bqo&HO`@G6ZmJePX+&YXnL#(=^ka zK}m0@RzC!-`6=Ug;Y{>0 z(QKX4;_AHue~1?lt9mH1HI5O*z#*60X*rkG09s|X$_kjI9$fb~1zq88UWZCsX#S#O z0Ev+fj2F{41rK`UiT%((RzV38%(>*N4h8*m<168mCe_MRqx&wkY&)8>1a%l>TFucIaQF_sZVd@)=;T;@k*2=iuHM}e|2m0P z6SvE~Pt*nf``|$W2wWw3Im*gaP&$MQT*^O8h7OEVOx~CRHV)3@j3np@mqTcUvwuNG z`S!~DzTuP@YR8jtHq7rFQx&?^wK}_mGL4os&C8zm`0Zy(j`(Y+_T*j)Sd947R_8cK zvHTkS=E@E)yFk-?%9MEUQe;?i8kZ_zLGYBPwu@@TYwqXb2l!i7Vdw)GP?@Y zQ!EU5IPUAn`P@>?ps(BGesJ?dgP2wnwo@M5GF76jYmJ!Eqn;f0%khi!u&fP-iR1M1n zBVPB@G8ZsJKDJ&H;w;BYMqS1`V$A#zT&zi%6r|Y-;~#VNSt8o>x?x7L=Y_6$#|3># zo%(UT^dcA>id;`U(!=|#>V3vnZ6cFV@hA$ zW4Wu*u}f*dwE-mmIGk!LaZirGrE7i`o*|c`C-+p&lcr_hUlyRTpJKH#Y9pWF2bteF zpQR9b3Iasb&slpsaff{OQ**pn7g?wDIlfoaghXbJ#B+8G?fT$C1LwOv6oy*&JHK=j z3Yuypn0#TbG=cVbWn1bVXtg^Z;|c}_QVA(^J>C1aonK)Z{-to!N z&ABUcnZS?P^J>P)NAT?B+)^6JE~4OKNm<++YJl+7!ilZOwSK-Y(hL7&&zbjg*(1DK z&nX-u{#*w$LUzl%IOh&FHU)Yh!Aq;h(nS3Jl@87S^fw6-nE^~^v@a7bRCH=u4DYk0 zN=u<EH*^853)((;}+ zE$0WxUVHz>czIvrz0QeTSvw z9o^(sC@PN<2Z;DnRdbk3(9)61UduSxlcX;#^tMQx!?=!m%CY7lYQ=%bMt+If z4=s*GtDTH6nn%O_=j)mZ2j9|pD$$b-uWh5)n&MWXy1(qpSP>Rz9V z&;X(dmvd=irQfTb1)d*Y&DEblS-a@^LnKPx8pF}=QSaG{axAC=(2SCpW=KD~slb#X zD=_v=;@xmu_G8bL)E;6SmdeQcA|sx7D>H*rBjM5?dHW;ceGXh~zq)UX%!BML@1*$n z);Fm2?L8<>YTkV|>>R^a#~^322t=-J6Eo7E@~JxR)}6InemUNn4C{Vez4>`UKI5If z-X&b(x)IdEdQ#`6qdgo~Wrg%+ra~W+DV_c>ovc zkjzWGDUq;)Df}U%AdAP@haaedOj(ZGT(eL+MO$n?*krYHPO}0(L>5=ufARPT#E~pS zr?^$_cd~ z4z-%%=hh}$Gca}Sp*gg>%}fkk8Lg4udcvWML&Z|#0(1A*_EeGjjLKS%yVT*Af4Ui? z2*g%;k8^Vk3U+NLWi~PSt#vL)SuI&5!9Q!edQm2UUK||(FT|cei7J( z#)k2o!+E_1WXTe-rDm9MdCKhdi%lTC7Hwmb9!clzh-%Bp7UwymMZ8l#%yDtpe!1Pa z*^!!u9_^mj&w36pF@O6yFN--YzM{k;|8ZOI(bz0KRZ%9^2@$B8T=7xbe7MQ}KSXB# z6%e1h^+0KpP&}7p5m(T-KSesO1T{%dv%?3``(z+jox%KUvnJp-jCBZ@R`**C=Q1LV zeIk!w z27_7>4(@6DN=0WCS|IFx`y4XY7{t_G4NN1l@nx57x|cmZ!r0FnEIU=c0PQTSp{0GV z^x}@%NeW*vwi%pd>b)j|b)o-RvLqNR9xj?bD-R&Q{;O9IXN_2%}I@tc6ymYCRs8Vj;^ZsX;z{rohr_U*5xh%^;`=&MHM|RHLNWDh~WtUmPA^hhQ!{j zON|3LtVHJ;AYY_JQJSB~Z~H|E{*btA*4LlBqt!n^&>tKY(G;8`o#GP>;ixM4YKtoN zzc07@n;;{EzU7<0D3ZhE+YqO&7~=I8;>CF4Z;ujRQL2318;5&@uUuag?utk%(qcHy zt^uR?UMN&zrk`U5^uc+jWG=7ukeQE{aebbTXK4(WQ)v6=AsY-_%?If8g&E5&X#AmCR0^h$2{)BD{WWhu{-~;_ zg0;r8&Puc6tJ-x3Lv(^qO?KcKu~JQ0I4Th{I!o3rda4&or5ctyMjMI1$uFo01+gf( zPP}De-M)IvA{?*?0!`v#%_T*EmgF5l>uLXWlF;kr0!fHp<(Jnp)_RL*6zZhb=A$lHzExeUc`_ZY@uWmBc!p`h; zDNQ}9lTQi{-gBOaPLOHa1Qs~Sq6DwKM|^eIV2xxjUSA7Iv0v=wRd(3&USAlJ&xqPc ztGbF~`hCF#9v7u-;pJ<}x(1Q^TLZMWdc!z4SLSgA`KyNNCfw_Wx_s)Ee993Z8hgUj zK|CagB5C?oI&zri7aqo!4QTEzd%KsitE-J>!QFPBp(zcjj>KK^W{Mb^)P-Sa{r z&)5?B`O=s+iL-OPa*Mo^R1Ky`8vs-t?PYqWq&$o_(3cxdD-i>+XUJqo$sa8m>Qpd8kl6 z9)9Ft?#%sZIhVBmqo{5oBDTnqvA*u7A7HJyh*Xr?_r9VBSInK}|1k?%y1J z3c>4`;q~;%79^ndfmsGq2H38^;Hj_zMD>cUK+!3lu<~+Z*zDkfKc+5I0riQ}A8eWe z716iI=cCszIA8{;=f4nVeHU1NFQ$0Ah#~XM4Zxy~j6EOy)KG?z86{yNTGN_{jm2lZ zH#o-ZCn}FV&lGy4aYi1H!W!Hgfthotv%d`dIbZm<;&n$zEDqnt`xCNw@09%pP8*|38v4%>cIVQ4`=?DRB?jJ|ISoou4H!5?e5%<_9p}Dl*)g)^ zFi}JV;Q_0T=3Q5n&tn&T49vJJcp9!fWS%y>tWFw}?LRZI1(*p~Vs!AGrTo6qDMP-z zcELsq;ZmVkzu%goHS#Pedonwy8aYol0S}1uw~w5A14d}IgJ%?fCb{YMhQ@fYO7*~kf`KUuM~?RVrnSo@V5ab9Q0T7 z%I|uM#LFW&7iBx!6-ZUm1<{#C8n2r{^NNO+zkQ}$(rcHm8O0E3#x(r$Ud;v;6|azj zQQrHL%5r_-M9HBWL$zhF8O|+pYbTSmnnn}Wa zf=nm)bK^0Nzx#9#OYxU-->;LewiOD9qo8di{d;g(LTczCNsj#tn%b8&`#&wZ+Ul?Z zfnO}Axv!Vo^}$D+>0(tf@Mo{VE(>8T$@=pd1Jl@V|1h6;D1JdSzOIYC^Ougib60ot zQ|B(k@MzG2-|%vQAJj858b{BP7qpGFK^$+c?8xx@;~k{WF3V|-Xg?OP?i05!tgB5fQW)w z>^`O%;&xHqy`kHVJwaKmZ@Tm7)}ns@s~haE5V%oyqsNjigGDYctef~QN+kGQ#O9XI z^DGmRPw@Z*tWmn)3#GKO<=M_reo=zF(cgSs!~h`EUy#M-6BZf|3b^ly6302=nGVFo z+~de`WfV`nH>5~yZA}8M{Re_Q4g8-DJXP+%@eVwdcRJlt+X|*vYsV=n<#&OfxQVEc zv2!a)pS~~|0QGLZSTF%0&WZUp|M7cCU7~cgCRNYpsAl(~5;D3=|3hRq3Ch)}`8 zetoC&nY_}4X|ScUJYI+<-~%r|@1{icOwCpU)H8b>IA2w#{2G`PIj*GPdG#)FY~OAY zz{Ne~MpK%JsiXhu*Z_?De}1zj>iEW3$=&+_yMdusxi zN%VZ4!aMM>HI^y+pHE5Sg#gl1a)0OH2U3nEfN*hpA6UuA$*oN46u!=RDvWdFCMi$k z=^tI`?+4TfPgjPO|D!ACkPQx%ZJM=&DD@0;ti_sEur4KerKya~%dw~5_z#4v?hW~U z#r{l%OZK=0=y`GhS1lw)ofWt-Ou_PQ5HEF>kY>#@DtiyuE!2i*=82+Tg4S}Ut?K`< zU&&MO8nwQW72a&9ub(&A42rRR)AiLN9sNlwC8xxnB_rd-G*AYnLI4KKE616dajcnG zW>ta9d5?r_4D|StJstMmtRz~R0bjUuOfRahU%y7E8OO-YWRL!*q)X=sSjao6 zKVPWI(4}LkndHcEi|z@2Wyt)f@zX}Kto{WRn^f(Ky)Q54N!YYnfD@mumIt6mPirh4 z@yNLvQrB7j?QBr%!|G@>5TbH&*G9Vtzf~4-5uEdlZly(i6%%_-`l`Rj&D`BYbS=$b zXQ%slV_KW0{lC3PH{p~Js`rz}LSG&!faOh&#u7~FxR*$g>v=)f#M`}>`Uhl9_Rv^w zF3*1xpv>T2gbA$JFHH)8vy2*O36u&m>t-EUyn1B<@U!f~uPYoHvN;I}QS4Q{ne`zH5wZ1$jcJpv!u4-M<~8~qlPh>u zo#JLiLZ(2J4`0b(1L*FcQbVEn9R)?HZ$$EUlj7Wy^j~xhE2?q6Zpf+d^!5rk9M;|g zwzxO_1Go|RzK#CJ(;mtffJw729gn>Pz$)aj2KXgf=s)oY+JEyOuNvnKBRYmQoaJaY z#4SJi`5TE|l-v%?nZ*_!qXz1(z%f(1$bIh$=r2Qn?q|`lBK@aoVkhbJT+{WTypx@P zYyBZR#!sn12+)t>1kxqTA_MdJc7Q`YnR|N&svZJ5bpdiI?jN8i;)H6pJyj)J7+TM8 z8R(tbhwCf$MK>KZAtwN6R9QN6qQ{F>%e-HYy^6kXnb)pmp9r*2!n^ zUmUh|?DBYa$K8cjJKM$W0q@B_3_BVQ3R|(|Ym2XD7p7S+zC$8*>G)3L(rH+tU;Uiy zv>yZhS|Q-iJcvk}YP=9!Z#H!vGBcY4u-&4%yrreZU>OmT4Q_!*3EQ5ljVVVlc6N5{ zr2RL0?IOwQTbp{{X0{@T*2bw*b zMPt2rAoeZ`x>Y_HTohEy*p$z*yR_Zw=m&_@?$Zw;O&Hrfl2Yj`kSS)R1e4Mc;#-O$ zYO6C9jQY#qnd0qpj>DM|Y2d$U?( zzrb#ai~XoL_Hb)*6l;AG-T1rpJs8kjkJNXlLVp^H$1OtddGts89F(qe4XS>@?dvO} z{!xr=9Eu4~c)8=(;@By07;Wf7Y#dx;y-;6oM*3%QP|3$D!1+2+$NAjsxVC4>F1EdN z?8OC_U3s{rSAf#YW*=|$K-jy>fTOy&U2a{T1b91xg|?Xg7$(~tp(Z$Z7u!v z!&Y*dKmSL7p`rUUj2~Y72t$pF?GcOAC;I##Y!oR%v`$l()Sc5|wcZqw3ZLJW-qIdv z2vM=)H`BjKX1-6l&I;%Boq9+5`YrRFW?c*FUJQ9;TyX}thWom2@g@52W3J3_Uh|Dx zwbq|)xQ%mp6m)8<>pXUSoXq}`WO!o#6TWQ5g}GmJ_xC&Ti7a>shg8P2`$u)ej;x>a z0qO3LM!HM7 zySuxj8}2&q_kQ=@KO)bg2ln1;uQlhGBX(y(Cj?@gJ(JDm|E^h=`rQr6P;DGuF_u}* zu~Y^*Jl*chj9QBDG9~U%T;?WQM}cKClRyOcbu37{z>pR}4}H%Mdks_qqcK8>kPszj z#P0Tu3|~|hByqqqEkefUkRAQ2mg(N~5rPqHYh$I11_=2K^WR(613=Hh)LY5~V;{^C zqK8v?@EPU+#a+(sA~@b|U&7!D7&bSzEeP+%yT@53bMxPBMrXDFpi3BpjV;S}`SkLf zG`)6NPI2!FUDTIf7_;SpJKLcEDuD=)>-Y%>z;?dPv4+8Y*nbfM_`fYLb9FEJ=}LRS zn80LSxqhk;*-{GP3q8~f@F&EfM8KL_u?J$=1m>FCf`qU9q4>9nfnUlnGdzwB+*# z)aoPPKg==%c*CrFE3K{0aZi_}o{7BlgG?%s&rjE_nJzf5^LAOOU*_44e63sIC>96m z6vLYA6xZW=V{1rL+J1iBfhN!k1g0p1gCtnRhtGm(ti@C~4r#bMSNQ##oD6efL#xs5 ze$}2o1bxWR=X*RExYQ?=LEU~ejTfZtAQdUipCzt++x;{-!Z7Z4G9+< zd<*@fI`1P;0}rVmj|EhJCOX6&KJ_eE>)dOej_7qcFzq`Fl=>&A0Q!0rN+fov%l$#-b$D=NwSE% z6E(W9nBozT=@H`ToikGDBiRVVqpy3}W~A56U^+;`j?SDXMNRJQ40XEh?+A3x?AAuw zy4sdfrePuPbbxn0wPm)KpP=9SroY0`MZoow#h@FRdn1$;w&H2o^(67m5@R!v;JEeq z$ykR=G{{*-hsj$27`JW#RY1+$5QZ=U#;-7R;87%=__Y@`wYMaUQsq-4=n3^ z-v)?fwZUhoTyzhark+q-gL#v_S4JY{e_|Vee3)GIkQgG7!WF1l_?Y{)hC|o+kE1tm zU7w85wDnF{0rYj_`xmVY^y*CT2XvFp0D~U@Q!=?nV7G7a2@83xn`Y7NmpgsU*MsSy zNs(koUh2onvEoVwnDw11Cf#K@Aaq-Vu`?+K36a$F3Kun@u?e+ zq*-lajF6n;tiXM_zOm^?Jc^(XJ=)*$BL*mA5Fmn!q!hj$RUth<{NPgP96g zMB^h><0@>wI*+M;$-Lt<_FndM;r0&3q@Vz8wXbd|MzqtZ+P1KOfgraV1s)3Yh9KdchzNkHYABSRQy-G4TG| z(!Al!jAyyJBX4!%*WK3Uf=am&$L*k+rF4vlpD>L$&`lesjlEeKEpdhMMZu!mj&tKJ z&sXc`_c=Z6_kQ!q%`z5=oX~|VCR3)V&PSFw6siKy-=I2hEq0kG#3Bm(N(dI1(I z`mPUL1T*fUVH`L8(rCX5uK5(FB6YwwKQNqkXna?#Rk~j@+t5MiJZE$YWQUgmPp4?v zV(pl|N3Z3*C9~jm;5hNxXkns$bmO1By4}8hqt_P1p-Xy9&ZX&Fd>(~NLnUxN@@l0S zi@0v5YC@iMt}Yzz#U?o0qrkj!VQ{DUYQE@8x@G+-*LZreP0JiQ3)?!#DCX8Jvmea1+8>BdQmxt=gQ&m!{DQu5Twa`FI z1-uZrIy4v=)S{x`KFXm_NK@tel$EBs@iuQdOGt3Szaam7i&yh>I3B0!P1DU^B}<*U zj-{EHy|)x^19-C|9gz%Yq>a>mk+fd9)@=+^olsJ}um8y5-uxvO#YMppZ%hQ$?ZH+g zzdp~cvX+Kr##DyE4&CLqTA*F*FAc&k))x9<8fG?S%10})lI~~l?n*T^oeq&1;%o18 ziUWE#qD(LyV1zM__#F{Y=Y`nZ)Ks zkZR@oN$+atyap6r_&x3ki)6=FKG{b^j1TChS5*@_SXe0|#Mh0j(J#d#0!@2-+~|=r zes$R`fkByh)xB1uBfAwn4GnXTt!KL){`;jkk(E?+m*jWh*F-sDIF>2V_3$7iJTxT9x7WUqWyA%vuo~MjH=jSAQFZ+o`wWL?WzR@n}>l z&eYuYbqKx0t&$YuchMWr{H7r=tEBpAz2jM`=KU&e+D@bxZn4mzrh#l~i2pY}&YA~N ze#(4v+DMX_8an77f+FavzkEF(aBq{zE9-J4#sXp%cCTp_ZN3I+=))zHWg`k&yijyX zN;x}g3wg;%PH-f{nFQOYfR(4b*`aJL6NL)HGtkd019!3~Ik$~Tqpd|fx1=t!7pLE+ zq13FxWiv);=Aa8N(l90%7`l@#FhL4GH^(+Q_QmJz+c_M4luEx)R6!xF`yLr9IUbL6cOjI&~Xh z9&A}9Z2H{PDVG(1jH^#D9*M226%?k-_&s3Su2$9&)@6X7iZHK6GMY#}!2U!NGXW>pHEO zVuDubktQGst0DXI!#=ghzRT6285Zj-9g<#PXJhco?fPTpoF&}>{##SO`!R$HoA}2T z)8kai3$8nn=-v|{`t~d#E&Y2KTvA#%F2R7=^b_*&9FdqHU5v1dv2OJ?akh-`i#F+E z$jiK59C^o7-$RcVg0jH)Gn8-v`sw8PiP4bzPx~8n^=+uN`_Uwxdy9oV-ilRU8>p&3 zF?}}7uoFM{ef8;SNckpow=VJ9NM9kDh5k}b(Zf;GG%UuUq7S)w?yDSD{kz6VKPB4d zQW#curGg;|4SR#J^P2vB#Nk7jc7Jo+lnli_g9UF=K6}$@Iec`yjrMzIDDg(Kj;eA_ zOl5)J=g>j5-(ioaHeXnwZzm@VsGl!Un!BV<89G@p`1YhzZ#0In$WJX>Ul+eAc^`A( zh|97W9lg2Htj)al%wtlBjQ1^u8BGG_Xj)yvq_s#u?fr&N_<(Dwc;BY)a*Qt}0TGKx z9&=+#W8Pq+VF1l}4?N+0-6KDu;WP*4p_`$~?VUZr9N&9^){AVz>wL%Yz}rW?358fj z`2^E`y!b1>;?xF)Cyx6Wr)E7HXV!Zf=Yi``J0|P`1+4t4Ba0*kV4_CGRNY-XPh)Ct zm*huf+FqNf<^Nq9U~|T346QbvPv_|t&gQjv{J$m0nl|;%WVHz9W)9e1ci*$X2A<6_ zp2UDakK}V!B9iKam`cwWzI|(W%^KwU3i)Ryy6t<=wb~$54|POxkdCRQa-E2D1XS|O zqpHE0U=i&SeLqW?JA&R^qaZqX)60-KTs%Q5n|A_+@)L|_iUAIaD6D2FxrRUf z+)m_0S1dEY7_CQuQVWord$@YCm6-4Ma6QmPr7y#?m8OR*FVGH8gcAN-!y%K+E?A+V z|B)43?IR*0`&bVj7d6HHH(+v1kMaupdrK=Da&ztx%+ndiF;ZQCxC+WDB@(#0=IwW_G zc?@!Kw?q#s8<#FP>_j^3IK`n^CGpL(fxmN{emx$`?%6fOVQYWLr-o)AgxcA6P_C}N zlUShYvieXn=zb_YnQTtm+5GOyO^IO5*e+YFAlA*&&ab%;WI=f*BrEH-4i_=KL|BJ$ z5y}J5rhIi4O3bM(a$LreAs5qG^AIY~<%zob#w(AgvFQkAMlS~rtIQAkd^jxgT zwXsjd{Vtr06QN#3XDsT>(phie6V9n;6x@f#h>z*~-3RZA-~El$z22$xf6+cbnoXE) zdH~(3S_3DFmuG9>eTflA5~@=*f@v_^6!P}ud$@8PzgUP((^=O&?gecrzg1U5s7bV4 z1rq77eVH_()6mX2ipdhd?_>@`);rRut|Qs*%V(I3%FPIloOZ_Chn@I?_?$dy_oldO zw!Y=LYSo%$lKH8KVSI#rjoRxSqk4SgAdoZN+G0hc+r6zD5T?4(&(HS z73z_Yrs>)y)nnfqMFIJot0gC$4TM2VAxXM<&EH+V`4jK8cRMa);X-U@Io^t+&#ML- z(0`ZcM}iV73TCa5d0*e@=l|8^vqWXMSU6$2q)~mTcRF^T{Z8cyI2h~7bunHl@2aLz zbT{#T?{Q6OzwBEdOX&G7;2YUrWFznw?$2yMvPk6bsoG)Ddd8&ZAZ_OqGwmIYu# zV7^+3BKDm|KBsrw;I7O&BoB|}a)%eHDa7FBAIZ|fCW%y9Lv8*FS8x`Odt=h2KxQ-$ zew#1KXWXkkk1|xCR*Do7m!(!(lMM?6!#43VS#7dWh4LYLLx& zwYr5hHT0>+%MC4Uk-PZAq|15yW;~y`4loX}|a9KKk{;=+8Df z#r}|Y!*l`o2Mlk#fo?|oCZA0Jnm%Dt!eRM=VFrs0)*D>o>HAU=cbO~KG1(&UNnWH8 zZx94$nSWh;j*)UaR!96&K~WGa7VM(=!e(!KrTlA@dmQj~`?-Y`9slT>fKXIL0BZ{y zB*MZ-!khlhZL{U)YsU3dPElKX|7+{Koy~^+j-oT0Rx5`L6%~))6JK~Ml~szb#g$uF z(bCcic0fkZSIUEWc<4^}@XKp2_i=f6`*&U43^d~p;lD6ba3GmK<%?O)Z@qKG1^Zl- z&`KTUF(l<+2bX(jugXi~2glcQVT6KRe9Mj7x(+!n;gL`EEJR3=Hc=V>GPXWcASQMq z)xK@7SQ|_DC_OFG)EtmaB`ntru#U4q))BwR)Ts~>Hn;FGX{uX9cd-51~$b!mvNcoa^Wfq(-W8j$+e+Fv8* zv!3-vc9v*!8;%Cr@YYkt8`wg=?+ZsLDDRsRUlF%3l0*SQCf;ifbCBi}5VJa#pxUCn zozHb5v>~a=aLluvVDMGPj5RF1Qk`wyFSK1TM#EOuzgEB0)?~A*?=5o{KI!*E%7-_Z z4Owqf425R(0U*tM0%ojtb=>YqDgq>9#8G~qEG+9mu_}TD&FdK^rMG0~2^yfXmNi6Srn|Ogz5x=_i+mNTp{r-o%Vr2!s>Msa&4aXA)KLjgCGYt9E zB);7L0;@D&6=&jRoV0Ivf%vIgX&lsuqm~<6m`7;Kx*={teJF;K^`{K;8TuNXLw+g; zfR|z>lg{rhYzTGWEyLLSNghB_>Y{GIABXZKt6jF;OR@Z-@6P?!7#W?jL2@g_@lLGi zoOWX?fB9&VJ!eg&RiCyo)gC%)r+$479&B`u3l5PdCLC^km@sr+xGuIG38=Rass5c- z)t(b}$w#T9&7ns7qt+@ubFlPxD&>U2)1OHR+|RL70t7(g%JQyC1kQ@D&GH&((P9BI z+z^n+l2#pzf?VH&?*`1&mTJ2nQcb!_QhNq(K^KhlxGXeY%*`JHd(w0+Z<>bTGujVw z_=L+tfGfkz$0i5Y)CiSROt$7ujGgO*+4WA-8ezWUTfzc`2n7?*@^@wH#eq0;3C3iH zrCo*o=yui+qET?3)k3#EF7(gNo!pe?>*uF*vqsijUc0^ez;M!�yVQ$jr?M2aufHyu3Uzkz$j1ia zp+&(wR42YbIWOP}UZfBVW~?RO-3N>nihR7``%%lpS)9m9{s`!3cPQvVMJ8!swe)}biB$azrXDkO32fFr|-koPRu1UfU3IU=)z&2jftji1UJgaPp za1I;?d1v~~$(iCbm(sfRS3>6_ntG9_NCb4>M@+28RAeIRUyd1Tf|y!!4>HxNKT+^Q zY!2b~X&!fGKmurEsrWKFx8R(=Rl*#fvKGrY>g z^mkI7I9hewu9Kc~HbPbbpSq|RNE;`=0a-WRVOFB+g|8Ug-*5e3&KpVumnQaBjQBJ9 zN1MO@E`u(N)veI@!oi0yrRBn~H+d%P1Q-I^*MoMWq@BLdhrA{X+;ZL0sM_r_ z)qYvCO@gqw)UUgvZIj%<=;{{OA0Vp%#6CT21a@9}VeE^rPg9LCTTYuL(al8q6S-;} zafD)R9X2BAC1O@kB0o7k=CH8W+ZK`8QwFauDNXcP4|fNp+dR+ke_pbf`ddMRouSUT zd-RV;!Y%P?#R&gBf~t{`5iSGI9spUGr=fu6*_R|sRdH2e)e8o-tV`S-)-#CVi4L6} zZM2xjUyQWWE>n*F;neQEV8%Cz*8%`c70C_fJ(CpK#YIBkc5PQ{%Cs)?mShbtx6e4{ zyPECzWK;gwLG(m?Go~vP=X8mRUOR-3;KFrk0+-X2AxkSmXLyZ&FTKJ8 zFD0f}e>3s0E`x-VWqndYT~IJoxp&EZ<~o71J~=9aNsUNCwd++l| zR+bE;)abisTj~am7ivrYt~muVAPgej{bODd#<`&%%-`DcrK#ARc#pnrwbFZ~!u@(_ z#u&}jkmQfW(_h(1_Um2jC!!PwpC8oW{zyEidUP{LKLjyJGK~L9u_esE1&<;hAL{8g zSwSs$bF&27)5vIvv)&ZHEw=DNpo=m2I+!;)wl-%T;L2x%F1NLK$D+g3) zyqk7tn_o8jZD$CptAaB(71|7bGJ+_d*HA>cu2@>tN@?^(Q$^{;(~h9p^)2nh4@Y;N z{@l`;B>zgEl{3SRsuhtEq#DHjQUmN{3xB$Eij#$~ilsEGUrQdThI771zbcBA#urTR zvX0q)p}k$TYsb+i!3YzSw@Wg<#&P%>P20p*PWRxb_X=6D+Q*sCHOgsL4?en6 zTSulL(ILWVoA7)Oym9f_KR@)}DC%k}VI8gen%LFqilf-s|G519u4IlA?{f`ehPyZu zRS(-dO+v~97G30BXS3-Pu#PYvyaANHlF>>LB4QtGfYvkXIn`neaU#L!!p23Y91A56 zLC;;Uc-o9x@+?ZoB$UVK3UF*7JI26pS7Q#$W;F-O`a=1Pyt>vTSqjNmM}v`h#o1w2cNYCTk7qY%MS+Q*hOj}0DW&?_iy^}!GYG5@N5Eh@9O z%!dXlS?}I9jq6W1YR3;q)`Uss^{>k%UKj#RN5~w$@dA`G8G& zdC)~^T2{RrMZM}Waalaj^y?hiA#(CdMB|ZTFii`a<8em)uuE*9FRRT~I(W})(2a98 ztg7K{D3oiU6(j^B?+4XS5rdti*WV+Ad-P{8#UA5KP+X16YjYJR)GgstWwrijh7bvr z1K6fBNG@vJ6NESZAnSL(GnM(oP*C%2_F?U31Z(ey5X7oLhIbY-)($uDh;9I}^Lv~y z?I4Mdyki65YW-wSRTq?rT@FE72lHhC^SBm4n$1{;*v4t2ezp7; z_^|x_;d*z>;43L=XycHWnAkD-<8Op2F4&YLf2^50CX{vmAO+_yKi`;qN`4pESD1UE z=Us3Q&FG!L6o*^sbd~4&np8un4468fb54yH&mPFxeKqGLSup*Pq%`_lMEHBTBNBO7 z{Msjst0;q-wB=!=I4ugLhWZ?1m)PDIvgOE@=M!DCRvU?e!u%+~qNMYZiX7p7qydU% zEAdMW$r!-tO}{659qe0MgBue*wf@vwaLz`Cfb&B8Jf?SdOCba6}Ko)5D|+X2mj9E)dky%Da* z$#lyg)%Do^!quK+_53y<1R<9@g5rw#w9RtdoqWjSkp0U?D?Ew&CFif{=c#D=BdIG^ zF5iAyIWO&L&seGNs-Cy1fO*9mDDa+2qQD-8XqQpzR18S}BF;;7>iL{~9413p(A1k1 zD~$A+dg^{+;IX*6aMIsv0`ZHMbM&JNF)Oi~d9Z>x=4A=4G-s@&vv$D^EAO%1lmHp= zp5E`N!j4EU-y&7NE-Xgqplyr^eYWsZOh!`cfoq`fh{Pfp+c%gR{b-3dPt~l0VJZ!4&e%Hrdxo**NXV>&;G8Jf5FYaKr1|gyA8X zN&#ZAC$>t7=5djOozEHO)6E~};^NGcF0J^&kBfDk)5enWs)L6!b-w;Ge=n9{hyF+D zh1D6THbS{wdwzbCATdpeGcEWbxK5IhblHi|YE=#zW@_k5VXvvX{{B~e|2rnK4vn8Y za6PouFMpv}dI6vFC!JEPr7B@C%%D{94jQT)j7+l?c&zH2b=WkbapOdDIQqDfILuOw2&NUA0>H(EY>J|0nbu z{^F-;Ik_n+iR*QjA5ItBMAe_`uDF!apjp zmZVBxI5+PN4)fQz$Kpdd69GeSSn?4+BN?k1YA*5)qz7=4(1-I~B|HFAG!jvW(G0Iz z^v~O(w@n%Xce~l_{9MV>Y6YMl-mI-KYU{>Be_%0=r1v;W#xpx+lu3IQYH2=~ak9^L z_XH#ek+cRY3WJ`Xv4QVgdOc7G?bJ<08vQX3?Ajf!!NfSB`ScLcB;AR(KWs9_*8Rs< z1)2Jn+MS=A7z@8&BAVFw5p^VLiHP+SWFqW8{tz@LjhMGlEa2Xrw}6~!&`>giR&}KJ zd_OdlS&(jKANOv(_i^^8+0CV)E2<~Bg2^aZ*NPB^IDoZiJ(wtmQW>way|ymM$jEpp z`rW7I{O3(?=hd=R?UMPXR5jy3nhv$qbwPbNXF@9F-a>s-N2Ax?w~i;J&vRc{Bhj_# zRk{5mR2+Fz_x#r9!E8QN>hc5Cd(QI7^5s8z*vvKf3s5R`{8L3Ra&E6%KQ|sXSTLMi zYrFgCR@!2rg+G3fm*X8(PbG~YN60tklX|Jtmk;<%|LV=-L&R9zQ~%na-bBap}x^D6Aze|e(RBd)OE@}IA5N$iumWk&||Ef4m|?2>h7z$H(uLum)Z zCNseWQPljG3vhZ!b{TA;`Uaf^ogU{L(!}e6|Jqq%@*5LH5Q1SRp+Zd+a}rLgNB^^h zNcq2DES^4WR(()f9f@E;8NhN34VFWJGEoqS0=Zvy;mqX`B#x27xc(*dQtzww=Dq|x z*?Y_KuM_UMA3%+7C0LUPzmvQk=nl3poDB%^tJ^y{y2<+5YRlNSn_#qFNW^~hRqbZi ztxv0o#_#3YVhit%GPl`OS5&=7&E|8H81y$kTVF{+kDE2h8djwD=rp|xATtBbY7dfC zj)0uA4`%sDU4h0zFDJ}-5>T*E3aF0R zu8A#E6M*$Q`g};;uBtXudfjk4>Jc83u2-VTCKdVY;aueqDaK}KeHAb;7=VH&(Czni zyV{?UA+ERV%8*5%ohGE0{&)o-H*yIAJ3kVqwL4M0gu6;kA|*M`*@iZ|!31WE1zo)L zJBN)h&Lk_cVZ%Fd&vrEwQ9LS1>JfY_)T$7EHN+XJc0X@1VAnI`_%=<;fRCK?TUa#q z??IAMJ7}_PD1#1egMOa@5P_}R%XV}@8(!nhfW&`+Q0GK%)!m zTd;C~P;X}PA66*nLj1r?78S$hIFMK*Wf7XjI5VW;a2>^&II?!pK7?cl(0!UombpqQ z4O5#Z=wIkshiBl55ns{2fTY|97>bMnmpp3F@katZZXXKgqV9aP%cVK6c~uW87HRt3 ze5Jl&q8~`;$Yi9~2gM8ltNhujo=me#zF!90j~*(uhV7sxitd~HGR!zv@#CkMeM^F!sFX0MRg zCxbaW$Fjuifl@ZpLnoeUtg~1Rn$MMv^KJa9Sq2{UCgxW#lW0^Lk37P0LclU+S zxu4_ZxnIpmBsf931d{d(UpxEvsJ5kzy!zz^V%{&)P6MhM%k9FWQ+bZL#csjf3&Dbv zA)^-vyJ?rXJ(?DuV56|Sb&bEElqiimvib9L%g`mY+k1XId%&fnPsY6b``Rbow5kkj z>@6hw3DO#CU2{pu4qsbBOVz9UxzaiaIJUZ|Djw~4WZD=t^aI;<98Svsg%DC{?vOdg zwK$ZD$EEr5K|<6Iuv^sC`Wfae2D2l=V0<>|axB zyr(=*NaxwgiI#tLq!UPPza$rvddqEM*OtU`p6Xi6LG;>Hl5-x6y=Zb48(=H1!97xd zaQiki+EQ1RsDciF7?&E5A+)LKtbD#t=b1g+7OP2w(ubJo1Y&Y0I zubRke^0TkSeoMNo{SSk-k;un#OOoPb<#lfP$u?g7V_ljyEwg4 zMk4G83QlHm71>QXlLbsP+fROKF&4vQg+5{0fJ=UY2SdO z_Q8?_B-aGi&qOUYboWiMowF};DZ*>uLp%alb#72k9p4{1$4Vq=4R)CKaGL-Qv@?_S zVqJtUx5tFtkDy6*d3t+YT*LH8TdVP}km`^Tnmsm$t!goDu+q(ULscT0bCc0)h8n0lOylU zs5kWpV@HdYPsxM%$hdXf^AS>?5Tm{_K2 zf8}+zOU`@A%&Fsr`{W9gwQfYs=D+1up_e!(c3Hd#<@k-N3vcB-_Jxa1(kit#{NAF= zBbGLu_1F28hvd2^NniwFL8XsyYKl$=As7Zn(7Dm_{mhvQAM&-!klQeAsSRrqDRuRVa-2jtj)@ zc|~+TF){db@u^4jKK%v(*1^16IJ`z8f!bB7Ny^q8!6=8XEAqGVWgdyy+WxEf<%ov% zC4B3YeP4^Z50a${&XKnH;E#FiJ@vYVrum*{C^sT>lK<3GSOBk*3#pyXMaY4L<|2r$ zGC#+nI1J|5JXDYvP+mup%oNa)e#BuY_@}eVK*+&_HeEs7$@}LR4~HD%|Lk^3(B9_l z$E^2?F=bTK5eDx=q)G+QnJ7=hyuZ@e7*<|)3g;VDO}jW+n#4;g8;0b%G7N8 zM%{<0k9&8FS(ypzTd7Qz2uLI#g(4afwQ~ZA?9gkql@~XyMJ4=@@KqAv{H@mQmXTg2 zhsyHYzr=1m|HyFu%(rd01{F2_j&knlodl>&|G^SI!mbB+nNM%L{DqYRDxEcSuQKdh zBPo}-fNw~FiVnF3SMmr%1bvBRmQTnO`*wKf!lkL;sIdn=(g>M(AXG|sy2`-FV2%JXf1GK1y97`$`;{$K>i!}vS93&D_s z$e__3*@MH$GVJJIMIEE%O0_VS%pWe5KI5&!F|JKn9v<<#-{EA*&*^#qbK?F!s&q@X zj=) zEOyU;hy_tEAE*k_)o;~>+W}va7BoKP=+S97EB|Th|9Pb70?$ii!sydT*Qh{KLoi2T>qrfR>()b~LRv z_#rqTmXTCe8^uO(D9119=;@-a-tb0J@C-T;PoOzcLJtJx1@r=~Mf;&xX;A|p7z}tp z!5H>Nkl3#WQ{gc@02}T7h7z^k5OVn$u-#AY3TnPyZd9Akh^2)97LYsJ_XENvAXGbw zCmn6apnjDjWhYK2H8O~akR!c8raQDem#&RI81bNMJb*F~N3Q-P6-|jKif?nm6-M{| zJt_*D-8i$a$&&+lC%#V?jQke*+21x9PnkDY;|qMZ4CU_gl>c2T#E}@Ib-cm6F7u9J z#BCT%xifpDiJw0!X{##@jD7KODivd2!MwCj*Ln4@w|~@(C>}U!4781Gh7aIOW@l$X z<&a$fr$$&X4>rQ7cu>uRJkOAy6WP}VAl@)P)=PH<(zxV|uJX@qq%f3s|L-}Da)EQ( zhCs9W6J(8I0+5CXr7;NeikdluBAMNlQ(enD-$XLe#WftR-DSsWsxVg5{c=k0q;)e& zhPM>MCbi6}Q=|6hE-x#G!8%Z)<*1Zu+XKm?G&uc|%PG{W|GAOienvEbAEdBcK9xoT zjp!=~H9Ul@C()r@hg;L>DQnz`QMk( zG!k;9ksVoKO0Y_=p(qYdah=*L^scnGkq{E%ZZ7lq`FqW2{{1=sd|@Mm-bZQKE1OP& zoCU97iQ|9a&SA{wgZ|cawYL zJt-{6eo(-^Jg*@}3^szlR#Rnp1p&>!g?wQ#lN)K#W10jT?8xIsMVo)4QjLB~>HP0D z*9%;{NMBRRGM!GIpPz358p@mYiux@8TSNl99be&$D#g}kFp*Uv$mI9`+j$E7!PA(; zvpFgujo?DK5k=M;8I04#^IrPYgs$uP0q+u1N6`Ke*N2QdHqQ4CFvVriYWT{GvOkd* zPO|T&H~7B!LWvuKl&l+t>QPZR~a(%gy>Fh6e(r&_S>(U%c(b8{=Hs;U<8 zX!fwZ%N&V~jYV8KQ74>){lBFFhC&nvifuWG;5ld1qa(z<33;;>Le3;*A$w@6{UtV? zZoEN6S~n)&&;4Ju1_VXhPeBDP+VP;OhD_`S`5aGNQaR0E{@=#}ZOkMxe?fpUPc{NM zHZ=O>g^yg}=VAj@_s_9WiH-6s{WAN#iGuNb1cRBM6-0;b08X(5Qt_fd09ZnV%eSz0 zFf_Kgs(0EQ6$(HlR6h#O=!c1Dcr||T--QKUt5L{nwYxUaO$Xf^Ci1aF< ziSM`P$e)*($#Jb}EFty>IuXmbPOv~BNe)zROv}p?6BECHJJ}}*HMPW;m>3*or=O}) z#GAmQGYn*ZiB6a5*tDDg?n37Mh3J3JvyZS!Fi`Bi3SoBB+O*J!{(>1`z;VVIfY5+> z*$_Blp5jX(HeT2y`@{Z&{W6Eg!BYsR0Ff zK(9^hl4GVx8*3%y|8Dm`1jk7sQ(vB{d1kN+qvvCu;%Bw+i^>acvbHshFAi15AtXBE zlUL^C*C%IR&cHzNw!ijW`f0@XV^rhcN&~V}v|)U#NLz);9|E&SXs93;u|&gdTE+00 z@AK}5ZCPNLKTA-mUrq3T3kAXhr4$xCB1=XvEfEKIyPX(-?et(U`7$klJg^2mCRS4Z z*o9`;jB!hY@QOW0v$@uYI3g}?nguVbY-k`DGn3;Hz~@o%@z{6Es#HZPrE$PIP71im8BOHMg?$c-gOD+Y z{J=h946R-C8CK~Xl*l9}tn5>G`K*`I2;48mz!8Z(5%f>}JRA=ih5=wiM}5e%V%I}RK}ScI)2s7b9yif8qoFnoi%*!$mN=sG0cP(!$S-*h@wFYR5ze2r_v*d_o&bnTKd;_a>erBJI?e%iO!sSC<&AfI zE;!H@toDRwJ?kMFz^k+)LL6HTK>cL^{LdsvlNc``x&@W$7RWv?Q2 zw!`Ro8)CKrzzZtR#{(UaX`D*qAr`BRw132KR{gH~1$nT-KbgX*ovse&{v&V3oOc2l zO8ub9fMwu`0>ub~ypfZamy8BGvqz*io+CA0ZK0x$?ARdW>5YrW4GKQ9zMmT)Z&fG#1+RYcQ=QzXbJ{L^h%wk`HNu!5W?G*p zAYyuED)e{6g%r{Dea3$r0V1TOtw|FmlwqNv9=i@ z$)E=N5U6F9zI>r%Y`Mu|q6Eo)5s>K1gtmL|%n;YC`TsPM9$I zAwk!8Jh~_kgY{$9OKAWAmXEkRj>S@en<5DqRg0G1-vJ+5R)csaM<`4N@u& z>cfmMcM_2fcsS1wt)o4PJpBz6NN`Kog$yx`F@o+?>63spXNp}nZtgKyrwYS-*P0ID zkKl9zyl2@DNse^7e*wZSW_1K5lm@KS&G0+jH+v&1>g(%sn`}LI(avKXAAC)pwnpAxmT;_6&*!J@t`%+HRUy>TTo!Q#Iocn93HN+J zw|B%!QDPNvcsJ8*w6s$s%li1U3qhyMc!9NcAPyqIRlZ4^Ii!;zx?fgKK0YoLU?AQj zWVImQ2(|7}Zj=dpT1bXy$fXY6eM^QBSw|Iku;m7_Ym_$QbZ#V4`4n!6*B1V+@;pau z=dt&TNbfn)&;QF9Bm>5oOnvmIh9)NX=T^PfKvHiqZiX~(PJofs6);(AF(Xf$J&28v z^7dFHTKb-g)G}H3o!)j>*9+0NLu^}-L|MqUzPig`E3BcOa0+63%n>;53II+A5k7YD=2HWVh)~vpx_f)1Y^|PxImJH#b*;NLahSR zUTj8fO@n8SM?)dlMbi=R$y9*pYPTyt-?=UY3^d>vxWAzBdIF08R9y$q!Y9MAS+Dcl zqVgOv`4XM?{Dhw=2xkU%YKa!1Z6N;$IDzy;e8bv-SPZbj&tmy@!H1B1sa z1vrHqa0$gRne2)&HvAw`WdwcN&o7TByevJ=y6O;0XRsZFD?2WdxVF%4DRw=V2?}K_; zxzWMi-9rW<+G;+yYT5+Nhs`qvE>LC1<1=U3Dk=)NnuaDiX8kelSjEOJ@79Bq*BL~vSACK~9XLif3$a(Bp z06!Be_Dr%6wBsHBCP1ib)%1M4%yc_`UDV~2TRE!-mvZz_W~O~TYcb3p)tw;N{|wA0 zaOHSI(7sohczacloSNR_UW4j{=WwxntMa2)EKCTxWxB4AIAn$!g$8E0R4WPQ;cvXL z0=-J5$?2R*Zfa@gz5_l$A;a%-npxuR_NG57pCpSGzhTmsa`4FsQLir>vE?2f89mc7 z-l3zx4w1iGA6q4K+0E>}Si%ei_QFX!FcSuY0b@<&fz1?BfS)6@Tj*c&k{;=fCSTyabr*7v9MWeh*xT$Q08h|Y`vGX=b zyY;O}V>V>&le_Ae8dz+bOM{@V7n`w55w zpf;o=9M?~sWEW;V&@wa=i)@NL4V?>IKJR|aS!yBd+PRh*Ik@lZ&kxc4Xynj6C3!KQ}ri z6}veX2wt?_m}ke>&_s9aq)-x~E^5CF7f|eWTBz}S0FLKU#_@o(RHVCrJ1<*XW(%#S zA3CdnjQEPmnlu3B13?E0E(`g^eYdu;Y+{L{Bd8^iFj#8%KN1Ola7`fKd;1f@&5rBk|7y1U-By`THM&lu+%zrkP#`^vTE z|2OBnc>V%D*`2lBq}>FBrBQP>W-u^@Pg1EO&%g!!I^A`GE_r!j&8?}=tXoxxO;V>D zz)(UU!FuE%?#kur-xnLJglRkgOyeAK+u)V{@DE9>cBw;W`0NvkVbP>mQ&SR9(?>MC z0i)Qw{UwR)3Q6I+{+};*$PFA>y1y{Ds^{Ok%g(RqnpGHLTNj_4E>$zd;-_-|=1d(g z#H>DweI<>Z?j&+a7BEC5!1s`mU`da(pqLvT9{$d8izfVUIKS^Hj zS+VPL>eX%X#JI+m(K5#C%DHRyi`?xv@^6(gjB{(x%IF$t`mlmBeozuzTd084)+Jpbjumy zSKP}tq?Zdfi-juNGl|m~hfa%yLD9rdq9W7(kudz=$zp5VGQx`9Xh;IZ0=|9L@ZG%V z*Zxz*zNIGR@Oj4s`^DZR!|VBQ76R*HMKyK0g0u)^Zf6XqIl{rPY_xMpCi~@B@3rUr zGwx~3zQGCI%@)m(bi7n=5$lKO%=f$jBA1>8D zyBGZF$1H-qB9|74i26iqd|c5F-iW%FExqnpTPi>S=n@3-hJIvxtsaVPe|59x=oTx~cnsD^^v(rOtvzu?zPx0Aq&@)&}o7=z~ zq`Db}GXIPJXv^rYz`hcZQ+G~NloSp1_d=yM%x9@d4877_bBaKs_@QclCUgnruN}%2 z7T&wxMapQ1Vep8WYP!RwF|6#QKRk;$bN=WfZJAXI)%h{~3Wa^W{$~u(h3q%DaDo1f zQ6(3Ji%%L9?DW|Afhhixb=IONjpYzxms zry5pVPsjVFAk2(tB(cJ0Rtyqq(h#PMEjJG_2!7{1e6wOjJQ&8kq!?7u$*Nh&+XL(R4t$z~yQaI- zycHCJ^*;k%zyBSHlsSziksoD5G~g=8NhWCR7m412L}QTbwjM-;lz97cbM<18h@hn) z0jHSg{H}gI8bkPJGiVIR=|^6CZiJyAM zaMTh=x2V5~mny>QWK8LKwE(an6)GN;t#=QioCdwMPK!C1U;^Kz zf%$(}g%w{T27DB%VWb{oCCG69xUB=-oR(@ePIc*u^GI{G2FE%bf<3jk1><$sxSY$9 zYtr_cYAAXMsWOFp{Ql8kH3njq?_(OxIwKk@gKq<(=;^E zW0~R|e%*P1jsFvf9$CvfR0KX-RD^Gf?7KHD>c7Zi6(Op!zo;DP{@h^hmX4L*d7?A+ zC+*+M(oLStG)hTO5m02*4=FQ9dz!8pV2IDYAFJFN1u$WWCcxx`J)P17E>q*zqc3zy z6S5N+5ZB5O6Cy zK%yRDE@O;@yi7eah~ZO)EL{&N2U?f!p zhv~=|HpX;%@*4F0>4tgvJc?cd}mtzny*wPSem?j+SN` z@EJA)Z)FCN40Z!$MAIPyRa^P-Zuu#APFy1vEFMx?<__?n+tWF(TO}2@TFvb^H>s>e z5)V`eRr_d5WnWKh~7M5B@(%4~QcSilvl?rd5y47IYwjG0nj#qlGb4)bR=C(2! z@K50l4!(mKPPm`} zS@!EKd?Ym{kXE4pyTDvU_fllsWxmB0eTm6r;60u7qEKh!AJ$z|a(z++7(aY&VEDr& zg$<2r)dU6d6gu?YX24)}f4QKzI{1&Q`(fGwTJLQ_9Vr*c zicJ^DmQmS4hr#4;1Kf3-f!p0UI+(wyPCA%obwKX}w@FS9lVw^mzt^v@y=J?0F%fdp;0gluJ5p+i%d$qbWYMW(>M#-di1rC0TtpjZqsQ6fG4vHN?+mJz#5*fPvS+I|uiyg;hlZmCKr1x0z%(7kG6G>mrS4$)H{Hl&2F7RQ zs%X}h6c=>kGfSXZgw1wEFh#(pMbow&&VGQYE_pf0mWyjX<}K=ju{DoR32nqO3-*go zP@R1TRlah`QPn~gsN)pbANY1c>Xi}j&g5O|(rXpbOQ{iS*a|`8bQs2v^!wEJMdiKM zU@D&Y_;5EpKFY0=ka3ki&V4fH((G-ccC*U1!8ib7!r|1@uC`;xS^7l#TxF91*;0d09D6BNPFQ4?DE~(skSekOcb`G%DaLiq~^cD!Nez^pe!t%X^o?OvUQ& z=8rhPBLDir8ESSLLwDJq8C&s(PwmF)_ZR=^I#Dqjpu7n1`AmONX2+9Cx zio=2E;2dysIOeHUo@o-^a{xyyOYx2y7KUL1&Y3ErLeNC8bq8`ft+Clj_f~rnBUf)R z%`7X1^#u5odBDRWT`e-F)Rrq5p8HY0NJDj!j)5Wmpmu)POA@$Q!UZYFnHdI@QOMr`@G>|RV?CW*@+P2Yrs z9IuYEYA8^1cJ*v6q7chJxE2%H!`j;Vnlh ztmfx-U_rNb)~?I@XOX49t%@^WP|&5lUI z?eHHOb4g0@18|NNr7={Uj zZnil1VCKDd(ps#4KrI7c4;=A~S*ywR#J;;h$`IDIVjY8#tZ82Cgw7bAMdB48QAm3t zxMAV-%2>32vIca&V8`bN1!>z;kyBrSe^bOZsm$;Hkpr-kVGrWE(a{|Ws*iiyzTWcb z1^nzu;2{8FmBN*Aqz+>Ux^PSvg5DB7Ra{NKq&{$cQKxQpdHWu57C>=y14+zfCj>CX zy@vMy!+2T1E`FUMG+=(ECelKeb+5fPc`B0cyzJ#tB`}+k^l-2rFJ=%ahUqWS05P64 zU1Y5@`Pe)W;9h^4ZUmyuiCO`WIHc`!d3ScxEAY5##<$WmlF4(YKe2xTF2J8BmMfug zOh~3PWVxov8C|D<%wVsdy*n5y`IvtJxJ6a$@+YFmHVQ=#OE=y|)9ef+qWh6H{q|x% z@x755eZBzaxnMVqdfS|RFv_c~#}{{b(Dn-Fs0H5qy!)FGA5O1!Pog~{25qhx3qla? zYg0?jg%coQA`~7(-PpF?Bo5VgvQMB-8`l|gKwgl?wn2_N4ge^l$09P$rV*t59iv`4 zYROSM*{%Hy8nq$P*+|uX3&{_~vDcm?(>29omE7DUwpm9#1zqq2$YeXQ^nrJzw6Un# zb7NDLM{hsF9k@aFwuvO164MjzpE_4Cc07)R*be@>Y&6T|84icieTiEgzlZa*qdGE; znyrg8V=V+-&X><(@Yuy}FZN7IDOglo%%$xDgLk+`;1aPC1JPkG@mtKpq{l%`(hj@2R}oihJc*JEgmN3&Pu(X~{TxDhAy_?{ocqUwKgX^} zfDyj@o8$dSFM$P$^(&RkD(`LXO@Qa!tFrA4;v6o_;+POOovept@t2no-5;a*QoYTy;oLT?NW}X=MJQalRcn7}#z8$c!~RKd=^2r}CC;Dy=1WMlvMI)Tr?*$pg7dsp z&&Ov*C+)L@{%U;D`=kT;RinNb!d;6#S1#Cg3tlhZ)ecG%wy$bsRczJ;d8F7toIHlG zeva9&7__%DaZMXod!+nsJlk~vkD5>tm@!5nk4?Kmw~Tp?=u43jKop*qZ2!NBLX&v) zZ7|q~j3&_>Qu(44X4QgiIutIr2vLoaUF6oVeywdtx{Jl%x^Xv=Ka)kB@^y3kd#P%F zIMPsr+<=wWfLRI^)ux(NK3AUmh%Ms}q(n?<<1uUzHvIpGlxT_0p8wE@94*T~HJu=#VTT(@$=i1S;C8~_xbmv9V#aT`Qar!>;luSya^K^PK)``bo zUUEaQH>I52!Y~c%q7KD|3Lss+zQE7snW{0`KPBF=i1VhI-^mtbZov>8n=2jr)yZEC zFBSw9g7?FV!M4dE(k{y+2Uo6%IM&Z&MQIsX%Uk3DFydDz3ig^4Yd>nB3pu0@&lC|Q zuMl7qSCFLQ1Z4ZYaE~l8sP^Z}LoXTgjTjl?(ibii(ax0Im3Np=va@6H{l zX&w_+&l>_@020`={0GnwM6)G(mcy|WjI8i6Uf3t~QxL1s=Z-@d=J2wWfuhPvVK#?p zNl7^#Iwa1rK6}g|xlqR9L)SNC@R9`3;GKWNevW5;so(S9G4t#GP3L1xA%f(yA64-n zQkeoGFJX4{!hRhP1U9oUDP;_+3Fh+ZW7}YhoxYPaj&m_BppB5Kw+xi(xNA&8^`=Yz zi2jp~>`GX6;=dz$zezzTC&M~CCk?J;TTbIXx!+%(9_9yWUno#6_g8W2u1DK zfhJVGE{33Rx*RUZ_kt`^0X#NCiNB4R{}0FjcotF+;_|jf%>(+0HPB{i1^7%ai*T+d z3fLlNJt#+y(V5M11NqP;h^I+QJ?ZO$UD)qtUi96Sg{qEri5!9;m!_x3JL>dtqa-ck zH7yh{`h_MuVRRtcjCaLAjqqgqfpX-pu(g-LD9r)mGOQB1n)@FZiqr{Jp8a|f&*Gq% zJoXeKh+b7$`2qaiUmJJqyP}g!v8b0F98sOtC!w3BYgj6uC5@Nh`xvR_q-2YGZzYFd z)PKKgVi1``TVpgpkIB{&IBt6p6@*~dn3BX(0>^?57||x-PkY~=h*!BhfWq=<51Ac&tR1MG{D0UBz?M-SiM3-R z)^SRK@1^2Dm-uxJ92rPbdVE(!;uFS;oy5peOKyyMWu@O@m8qLF?71`3z%1<^%yZem zstiA$AomfB!&1Cb^Vc^559dnju|Gk&$=jd*`&R*D?5CDL zG}EK97#|@oW)UO%e%FhEFF1B9Rr3^k6zij9c%8-S_fsa7LlT=&l@vG|yq(Vd)^@$o z`VYWVIuSgWe}n2u^NzY%uN~7#@TxY@13A%+2iTm|8ZhnIvfwEG&qd?sP6~{o?!JX} z;3^gz5F)j=*%{b>y}WH?0jkd+@%V|YqcYYns*)q` zd`P)K#>`HaJadA1t~RmA{kdySeqghngnE^0PyENwws)m7)UAzx^RWkng~t>?d;pxy z+yG**n!mi2{qHFPk0_`VM#s4_rzJ|7g2r+;@#1;kS%G8@2|x~Que3k5C6rHNaP?Y+ zNsSX}jVk@$vnvm~8wLIzcafrZ;Atc%E%Zz=DK3ueE7zB^q6o5nrffT@8I3kl)BklL z0%=zsN;CXzGpmBGYw(|67KuzoblY4OC2_7ko}2anc=ay-YiI%%4t1%d3y0SqUfGCe z^L+pNE_Fi#;V*qWwR7yikA&DW z>kSxRH+llLBI)m?y@;yB*W?l9*>V);b^-GLDQw(0L~yB7+Al*&{kFJ z%c1viN=}1rU|DlK@a@#k{u1QPn}XAw$1-U(YqJA_+QN-DbBs!tZW`a|36g$P{e`ZL z$3D>5at2GlfnYJ8LH{`RjB@`#f(39}4C?PJKVH_=qvD$ofzo1sm>s|s&vd^rS?b|` z0w_;VdGsXG{3-(BdM?`E+Y1n+lkmDlL7Ija=DE^rFZZZz{ColFL=(Lh?14rHB zYdKiXr!AXzSc@^NW~PAc)O4g%_2!2(=7sz3BV2z>eg<~Fox6O;u?$j?^cb-gM^r=x ztirAs)NI1?a;<>L&#xSE+?oFME7ey(h{KH+JQKIqbEqptN-QrjG4g29tSOx`w^;KN z1nnD}Aebl7;%7ropm7?Do`3dRW+tYuLILo22guBkCCWd(9JM|zeUh}i02P+K3l3dq z;=e(-wg#+P7y_}ZT2CU7YbNfUWYvs*0IS0a(lr%dEEVX8AfuW;T9%ZXbBw!&iQ1!# zU!DL#6oRk0H)8RvLhktho{$4a`R2=IQtQ1avG=u}LyOS>w#b|2Q2nS5{9`H}9*u8B zUU!$sv{d|cm4bs$#C5)_U;;$nzEYb}us24t7;Qk z0|02TI^{q`Wj8-!=-8DN-&nC#Ao|4TFZ{a>01 ziTSUo%V;HQ*;wd|MFx)x=e8*pS~X`eJyy^r+vYbHqxJ`#K7tk+BcOH8-iy?PUB{pd z#{=%2y!9xE3{`Lt=`<^;WUMroFx zEUXVszkk?TV3iNC1<2;;TNc z0_?xYIG~q2+au>+&Z%O58NC!HCOb9tMM6SCz9HasE$@42CNi+Qj8BX)q4%54i3l)2 zm7w2OBY*4|c%w6*uS{U0{!m40ROct?tU6gaCo?DHD$+snt7gdb8er2_{ZM!AC=R6} zfpC;v#$f7OY1bvwcSfMc6G00i>s0v zF6g*zVsQh-Pe$WF8OFp1s1?R^AZL2h3+VsG(VF&sRD~^2hhb0dDG>ewEv)qj59--y zKpTU3W%+0SlY&K%O^r2Ji#F#1RvmpHtH{K*SFzKY8EEQ<29Iikc+5TUH^9QX38W-s zCdM&q#xJoFn|2w?#?^mgKi3i3wmt924bR9r+#5bx&BQxB_AIwu53;Dg>DO#H?m&V& z;J(&-(0>w;FPy%wgbv;^e}M7}7LJ(YfPB$ZhC#cYu-lt*36pJkE=@WcFu2Uw{>oYe z1aiQmjaK#8z-ly?f(1q2AjaMO{JE`o$NARA#-wXc$ENJLBh_9QzyF-KC@CE3N>+GS zR%VNnkGt=~PT1X9K_DL-^$&3zfPOL@%++9EXQcZpXW%GEk2drSJVCt+Q>9?BGY;x0 zx0&c%GI=ZlFn`d;vWGJ#=?yR^4qoD&POvZc{W5Fqo843yn8i{V7^i7@*TpkRPb)4f zpmodZS?<_aT13db^9k>GUqMV-OF@%tkH(r}n~ET!AlH;YsN;jz|1>oWq=>3Wjg;J` z!1*GRl*N@2Rc)4jXE2K4x$Rq{X$j+kkDJrAv0TivIym(tzgzN(J--{#y*UU2tkL8;?+V8||r@&GnTrxi>LN}}4enjWbiL2j@RC`u{XGOt09E)44 zU(S?gv)tmJn1*9_=mD;U%`}@@y|#Nka8x&;77og1Y|s3vnXeL_KpF&OBlZ@mB((3s zro6MsV-2cs-1~n@k{ZNxW<-YAKdTVPeeVBT%tg_b&ScA*NJ)NDUJ9QhzCWc!>?T()C>^pT}iNGr!WqEjlwwMTgk^^bm1 z7qTtjt3Cp)qX~e)UPzF_gOX`vT#@WsQ@T>kj4-OgZ;kVt3B3Nx0u16dfWZ;6nIYL4 zh%)#h8iAd1s!Cg(>UM7~C`aP{mket5A-j{)Az(!3!XYt*wR#WoYK;Dl=4_?^fKiSZ z)PH_Jg|f+3w(srPsN0rYC1`-CRnM=`^E-}W2!>``m5h~>5klyB+-{5(bnxMy;Qq|# zb|Q;h-!KFY{THxr4uCupOU1vYKWLN7oFwZ_g71>q&!?j-KyJI|wpwmXB%cFHR0CGo zjZv9f6vp~64BDnY3DR?k{08A>=QO0VdyqNEa&50uZ?`sgzB3^*!Z7ngyLoOhh&mIF zu_v07MZ0NQP47*)peatCrMs5+9f6Wc%ZHYhA!C|2j~pxL&^BMx*QfAar1<=%fHd~; zX_g1&nD+b6m@L_%55F9RU}#12n@?ZTLY(0gx`M;8JUj%-vuPoa%V2+6Wkz3LebM%4 zr7wOw6gM$ZGJ|>)Jt=kI@MrAP%69e8ZWc%ne ziUnVOKYA4#Z~fZ8lJY=>_;EXIC8OwaV9BlKSpdXW%wZbz*!p0SG(oG(Dg9AQs(CKg z$Fjb`Xl)p7{YL9-l#tOc{bZJI2{~UrDvO(3b{VKk^0qvjP&tZ6CixlnesPz;P@kbY z<$MhzOtzm#2p#hNw`ZDyxa0*V!r)Jf>M|zNzT&4*zmPP`sM~_ysnaU3^yD91vpMCp z*B^)Y2F|*>B{aX@XPJCXr5yP9&YSKl0gdz`aa4X!9Nfp16(qg$zhlAQpeYUB3@Gyw zzi}`mk39N3xVKQW*n=kRuSS38YjdkRgu|XtF@nr6wV@MiqQ5 z0l#(Cl%zXe^pT_${t5Vtz5?@c@4fZJYYV=01a&I4e%(EM=%i2aDLSuy_^m;#3zTaE2HjPlr>K!49)VRKntw%`_&5X@cp}I z*1sW>F(Y*CL;G{6w*u!kpG^)`!I|*_1V@%QlY;t9DeBQ7Myn4r8$c2Uj}o~nS`vXV z!L>G-V@0j^W#GMXQ-2jeCNcxdSBLE_lc#5+gQj^ptB!&!%3a{u24L|hN1J9JJPE*M79CP3%C!tPm7`HouqRXfv(vgps} zQZp1GMrLmihbWDElEdG>Mf9xC?OV?qOvRq}79_pSUK5OHa6QpC$hBB!SmUN)C=)*( z)JhqDjI&lO@_4bX#<#VDd(yrA<#hjCGpeDRfqIz6&dI)pTg~hy3CGZFgQB(3Tf?}# zN`=7kR(I3LWb3MH?3)cc_r+C&;T=la=GjvV6EgG1xTnY?IvFuiPt`NK{p!(jCpaDt zv%=BuLL2EM^R=%sRbFSB$c&NI#v(zk0RnqJr&QhGxuH?9HFcTEK5|u%q-{=JIjWoo z_eO#iA$KKFer}~Fv?UKKsA-Kdx+NR#@{4>}n#z)G2kEqOGK(%AOe@(?+Pinr&(!*L z;l?fA&T!l-ZM1M1KnBy=@ z4a+gxpAhk_sOLv*=e<4n7`S-5a!8{W+Axq_-C9%O{={Z4`V2FIkMRa-uaU-q>eIgk zq$yE*zId*-m>f#d&$pa94)Y+ZWV#o6K}A2dh-XiNH=uGk=3=K&AANvGp)Meg`UE@d z)U78S7nx#CBJ|gTYkSi<*w1lh)&NvOHII9H9YN@YzCh-+>UIFvoLojf;Vpk$fXBOp znh75anPCibYRRcb#=g0<#y?sYoHdkA7e9H4|1kV1Bfoo+z>s*KIrZe~p3>DNex&rf z1UW}{DBoXWob%}GcUhD#BJkC*hgliaKC;@IM+C5&$p+DA)j4wLfrT#zkiC`E1k7a> zGmJdE_H&5>2!BbwNL7;_y}mZlpby1QHOh40_z_F@x=9p=^1dg}$t5}rAd)TKJUX4mwblqHZ1_;XpEvd6?o-#b?#m#T$CX4_R;u|6jky9@p5 z=T&6o3bZ2stP9kS>bE`UxTThD;ma6}p1!WPG7pzm9cquDqQba(DY6-hS|ypZ`a{H1 z)gf!G*`kSeXF00tSfb~ z+YxqtrV|2*pLM^s|MEy*;hs+M_-eAZ?t*&?QMRs7H@vc8evRiQXBMFZ)6721F}$Zc zQgTM*yj3x6TK9raM|-`?0hZN75-u9qZ7YSbcI~3HJd-#J^J0&r{FA;}ki&hGZIEq1 zl-E^-U`48ZCNiVdaY#ElA|v^?&X@6q)o~{f(S5`4X+s0rn*qhtzYihw(zK=;P?6#j zS(`xM%(d(63xyb_hxtk@EMBU8QPFb8EphfRvo|F1r2>W#RMq&UF&iRTF*u>z+I5H~ z&2NMW_mB{`Um&t;$|N)Vy4F8MpP8z2Nt_8(O~K|_;xhLrxpeq)YjTJ{OZ;czan54R z4mTvA;o2Ng(MMh>MZqa|aEImd_iA3+vfc~atS)LSOUJ*~(%BU!<^d||8pN-UjjuD~ zM%)Jzt22t(8keL`FWR^Z4+sQql?uC~lIr%FXwRa(m7*Vy4SnXvBvvgEPd6s**OFhF zd`7h&RLf{V8CBHJe04%aWH^g1+K&ruQ zHTJE%uTofbqj+$79=?{4meP#j^)4IHQ#`-&%I; zg#e@xM5~TeSe+NDo-53L7YCQKXY?aeR!Q2fH4$&ORLSbQ&Cd?HqN0jqwT~jJY&e;= zbw?OR=rPdcay%K@Gnvcm^wC3?5td|!&!cXCxbiWmrt9tq6EBHmikf6K+ZIHrXgPho z@e$>x{a7BS+m=I^#I(J;znXendY)Frwp@v=E1~pj5^&%u;4S&@)Rs zsatlC(g$-@gS>8uGHx5?m4;kpLa@c_5Eb=l5!i}UUby_&@8U8+9FQxiDZoO0{##NZ zki_f}ZSG>{&hx|@VSDjTIYwv1 zJC+)zl>7$URYKTN{&Jr) zy%p;^`N>U_5gwj3vQ0osZYfal@q?;Pd;2fCs}vTG87`TRmbfM!N4%gSbz5-1=4>gL zL?SM2is%r_rt{uJ!d7VQYY*O*lT|0ze1Q9Y4WCH;;xy;r7rX6ds*PbTZ~_?Am`y*u z)dsQ8_DbkXWe+YnL7sjKlQ_xcQlRS z9z6a?dv<%itey@RG(^?CfyL*VdRx_vyH)jHqq-3SkZz4kN~;UP1sguJB};a9^;_#S zom^+Gt0sMZ!$T-s^hysWj$Ud;L{K^&x_n`Qor#VV`S+)QC)+-myxkuaBb(CdZtx!n zxBYxR7#0=JSAl4Z;zYIEAYz$5+)XVdyh(5DrD7ea{q-%Zsz$`L9&?;_zwhAgj9JIQF&X8*_9) z-G407uVwW!s*}pofpz|~wt@mmo^_%%EJoAxI?IoyuxYL_@!E&#;nUn%6Gq#aaTE)2 zhSEI~al|4eA%ddqH4!kSJJI{`7EI~dS|O@MYIv*&wMO$e7-ciAq}hRsFA~_W1M^7I zF)L)}fmxf*)0QHc%3R6PMFPLSV$792W z-_KUK9g(897Bsp~a$-!}_V|{z^cZORZPA|-sNfH$2|P(ZdY)bJ%JwZ(>F^(32OIA9 zHwx6VkNw2r*@&-Yf6(~Lz24CbPrz%t?7AM+)B0@qtQ5B6PY(i5V=p2?0GD59+B<`N zZ+Nm@pvRhLGCiYPekeWG=&6lI^(k7x^KSQt8_td`1NL8wreBQ%j@Z5`u1zU8qNP{v z+w8+m-{ymZl&&;vn!j#qz5Ep8k^b#PufL_*cIJLm&mD*7wQW^5?Lk$?X;;+<|NMT7 zZs)n?JupKvdk@x#iDq|@w;>=1JeDdf??uEfR!CL~!286~`=QEr5JOTb(S{LNHCRuc z4`W+eVs(YkE+x-yg)?PeuEU&ud8>d;&vsq{i%B zYy7r{&|&9#+iT6OS6$M7tfhB^@N3XJ9W5>5SxWTgOU9oDel1MPXtho{5U}c-pwzL9 zr0i1uGSk)elsA)FHgXvO4&5dl=^z0|iD}eLlq*OB8^qSA4Hc}PyVf(|4xwj)asX@2{js5df-^b zB`65RtR-R$=LPm6r!rpTce=cIvg(pgSO+iCo9x*A)$KEsf&xzBz^%jPCM6ek7KHoxvMe)huER9A*!F zbVC=JT*LRqwpx-GQ+~ea&Iq_h`(Fxw_psi{S86oJW{Xa-kJ22YhHHzYWB-8DTf~F#<$dcnQx!a zCkW$6Y_gcM2;WJ2w`^jTvfSiDbL?pkS9dPBx=ZJ*d(kNXMt+`d{_wL4t6Q5|@!n!MyCUG$u(%^9H z?Drw(tj~6e3zt_IMMBN@B3!c+8QXn7R%ryNXMpuI!;IK1`I?Z!G!|$r2(^7M{5V>U zab#U9zD5XUXmbWv?g%B&VnkjKOVJ*7trBIXs%Bh|n6vbGt8ExQ4^(TJ?&1*V`C0{> z`Q{UAR2QI;ZnOSDK=EEL4zR+o;`0M>lYiHtL1h53^CD(<RnIR)02>FC+Om9u(#2iJzYZd zDD`0q<#0^i+s8Sq81}Tqapp>KJNZTG`Yp}dI0v?}BnJoU*xMq`uT)oFM>aBY#=14o1?-+Flo*g*+f}MvHquelnHu3aIg0wvZsge+yxw z#Gf#$E(9Ij3DD$FR95gI%HxUs>c`&fI)4cSCQL1D*Ht*B*YR-4a0Yh%g89%ojDF)j zh|^pjU8Yxc2oaAnhhD;}w~Gwf(<8LtJ5EW)?NE}19Na>Z|6*#G>BO%a{&_2YwQHY7{pZcKb24#heCVq{y61@)#k zL8m}U>g`!+dh?Nb@x}6sc&Ec(8CR%(!HHd58Ny{nG`M`5^DDvUE7NU87?{XO;(71ik9K6ah8xF3Yc5gxr;A57+gJK%3M zh|H35gidG2x>cls^2H0|smb~x>oDSLGb^I`rFI|>WMiTcU3G-wxx^F3Y*u}qSOeTn#a9~LI)J(a_DmUW?86%@B zG}v$Q!eXNHc-=bYeJ;^zti1^p3oy=t%fx|1G>cOpHUzxNCi(yZpSH?Q!K#5ZwUCqZkh4>DBq<9d=}gI(q1!I*?Oq1t>F&1ler0I;rXcyBk` z8Yv!ufyc#q)YG$D63g^j%h@#_=i~)a6nrmg`EP0Ncnn=~9kxV&-HhzvI*{oOrpvNY zHddebFgV+L64~&U)2x5>d6MWV#^|07eL&lY?MpF;=I#lc7pU%&rQdM?;zH*`%ib{8y9r1cmw2Cy$tO` z`ygNclE*%&Q2)9x+X0M>yb$UN39Y~yYehxnG!FBfKE~ueAB;g+ARi1VwgX5IXFcgE zMkA?ICZ%F-KL2tvS`8b)!f{~QKZ<&i)7u!x&9T)<8G;D6h zvrC(&C#zMb!Eb&Re6GzU_`T*knMTW_2Da8&Ln|4p9e>|UI&rPIEi=l%)W#inP_r0j zZlYR$992Hsw-Jm*$}9r5(RtGseF%1bu4*UdFYG+eMUt5+s9)Jf9rMCtxOhk+DYU`X zllu9p`{|aqB;BTWjrBB+KrIchBdPlsC}v$18GjTT&t~rS&zt1NExESSOD(spGA*dh z7smg8^gT0b7>R*9P(no&#p9Fh!K`VeUdDRz(%=TJl>rh@aQ{Ycbrth>MiSVNCW~j; zb|Cgh8iVAHDC)ZeCAkwq=Ixoe)8<|CsnV3O$t$pxm*H)oG4o&59bnp>-J5;!@wUy~ zEz{`GE$ez%54{A~FnT(=Te6x4n#8M<&Zknl7CFo8?2GJ{5!|y}>kb-)dD4%5sbno| zx-U-f->y*aCE)b)9DFVe4hr#2Z4U`aDuhN-p`sp-c=z^5np@`XhyA(OA#207M}HfJ zg7+Q$Bg9Xzv*W#XiCwOODW$5(;H~h~Lj`{Z3QKifX=_&?I){xl_r505`$WoeH zm{r@#I&CS%Z&YRR5@&NUk?_>doix?a7;SsJ7&Z?pi{sf*oKe2`J4TU(NLN^s9CW4^ zgN-><|8V{K6NS+iE?=05Gx=!?vX9e?2x=WC|P8jW1a#HOZ3SXsD z&ee3MH}g+rz%EY(fY+B{f(cv{*|f^E3_!#_G~3qP zq;Ko4cb)m3y`N&H;AM{d5zivr(bTo4*8YLS41}8CNplPYVmVuy4UmNp>dP#T-5b0= zT$&q?3cy*dJ1`mINt8ZE@qwr&Vk-Z|z@`C!RQz(*i+IUMypeaUXR3I|a<=7>-7iP@ ztX8zvvWMDx`nHf9FTrh?DEzcPle=T0x!~&dHLT{90m7s8st=a-DGJYiIj_Qbz}2)x zQ7A9sMd5Gg{(&t}{XgmTt00K zf^9wJB$w_|%0lk1$wLjD!frk)cKyt_bEZ4WH{8r>F#=qkO7ep-Y7~Pu)N(7RQ-Af1 z+AARvG;{BZj#sV1>XAe8_2mY81zy)DKdU5J+~;gN6XEA*NFL#l3{)YYC0T2)La-~; zOm`O?NLo&kgx|EbRu*!J)a{m1@k$`@6v)wBF zp@##na(1(^!}loVw&pl5HhW7v=5#!a)c0N6{dDD&y`#9@)V6$AKG_Bz;oX$>T1w8R z&{yp>Q|h3k8=P9*|NWSP{Z4!7=UMI`&#f%?ZD;(0#R^%6%x|I6g>{JrXS#smjb#Bp zTjUQN5EKqM-I#T@sjo@`BY2OmO>rn=T&Z6I$1~TN<}4y?nF*YOQ}y1;AZ|QD{H1)) z)U3FNEDverB%(iY;Rabz=+>m`FG~z_2|CqOmI)nF6k|Kg>gzNzZBhixOWCz8;3Xgfh5lbf0dD3r3sdE*AxzzO5 zAc|TuY*yUqWJ;zl$(G{Kr|2hY?jcF=YB#y%eBsb#6mw)cc_B}!l- zY!w(;x)rfhn2^KRYhkvN``HjNGsN275m=_boDlOCSb60~O$PHdY_mNO5o0hvnCeG+lE!NKrlb;8A>&Yoq;1D&R z?YC@YzNnZU_8{;k6}47(saI)2KFi9xBk9$N(uN8-qJpGv_=Oa`?1I0U?A2O!vuzk7 zd!$QjN&z8C6?IyQo*u^9%Dvjw7dFs9@;RD`h9LiU)_~2tx%VlRR*{qyV)1x=r=|w= zT^*Mt)tPp@$@1*QAJT9v)0?Wt#>_1xqnSROe#?vgqSqOW*AYf@A%QAgJ>y5Y@CZ*( zBOTRG@F~53tU?)Drl{ zN1}}4RUsk1RQtPB{JaYsHRSTdsJ>iPg$Zw0J+Id<=FEHgMV_ir!UgrvR2~tT_H*$s71;>qUWsO_ zq6sz@;Q!PQ(qv$ufRz8t1Y#F$38eh+Kl&RGy$C@J=Q2SO?XKfbM`UUX^pkIURHX!; zvnaKHCupi}Wxkrd*{f|TdG%x^*Awk{vkj`H3{I3sT+5X6W({JD_CkjkWZjTDZ!qU% zigbV4)FC?ri=U>xtu39ci>~jWTWj>q|1S$L?>=TSz_Ry=Dg8cG`Jen}3I&|;znQ1} zgMSlHVWeiHA=l6TtS#a*A6riJT&e>pEkqJAZZ-43{umb8tR^6&E6vE;HNT!>lF2I9 z4D%_c9ZgJkI-KYfJY^maYAsL9e2V%t-ck>Yk1Y>?iStH8-Oj=`@X)3G03|9ruAas` zltmOGr)xhlObRLc_?9+6#+1-{;NUC?@8krE$4cD%qW5^2R--bA!P^)#54{Dpn$#n; zV9NDUdh`x_jZ2hX3a@(qZOdBqbUu&TlSv|LZ`rbc<4_I&784_Xs*(AJg-W4<{75QD zONn{yj2;hD?U-H~Lv6dzM0Brq?TwxV)9-FTCIs@;qJ=7gK%Bu#mHmcc;)7CAWjbQm znVu4;0yJ+mt3FXzB;D*CA`##ml|#bFHqO zpAJ$|W$D#hO~^9?10LYpzyy~TMNod?Kh{=|PFN7pV+Z$DtqKTc%QSms2$vgOUc{tf zk%MSCn(a5+i7i`#b-5xsqu$qS6fK*#4WWpoI9)$D+l*f~?i;!C+*`KbvCt{>9KU0_ z*#dy$!NkzkZDae{{YkqztIwlnRV&vzVR$6LJ2_~mkb$3{2qVXsGa{T(PM=swREPzy zmWCel4oK6L0@f9awMLgCYslNcKZgdx#D~zB_g3D}x(kPc+YHAsqpRVK_4LFV_)w+-7FosruA(Xht@ecvZD z$mZo({R`P7^#?V-qIFIYq`9ID=0Lp^L)w}8lK0t!kNLwZzeu5U>W`V05D5UdI(@vz z6(Ui${?87&mgFg}OwLv1J-=&YUvJB9@6Zl|299N-lg+~$q8_KD{lWcMj=gKj|N(jdVVIc&?#KOrxw*Zu_vs6y(X3kZXu4ja{G zcMGKB8POQYp%4XvYy}N!=0W%^X1U>*3U4r-=T@N;owl%eLnTUMVW zh$=sjD3JO}`R2_q;Z%n|SM?0E8ZOJ{aW-}g@O6j?hWM4QZ}?BTFoq0cs4}jFarxY< z-4bVd`qka;K^tDM>N@-L%6`~3aGYN46!Ojq;!-Z6JI$3_&2x&BLq~v0G+oJ@m8~8_ zsc(lAQ4Y!enBM(hu@g*zxTV9G6}|4T(t?`3)ZTa4qiz5@0h{667bl4afb(tBOv{)y zP<^t1r$%yJ7K_5Csxkj#kCS)xp9du^jOde%Qtr@n|Gyhn9`>cMpzIowFzv4sQwBTy zkiMUPz9>?BcmN0k8~&j6;;$Qm=Xw>CQC@yzL{lGTvm}^vg9V+9`5UOSRmZ=xoGbphogr+_;99g0Q~sl+vpO^r@^ zlCXz4_dKV-E1m4Gc86hr#y&c#i>tf)FP`5EJWS}M+rus)uzsgw@85+m?t*}zXp3q$1#ka_fHS|y+U*@f!S~Rv=Etnrw)$CtKN`45oiT{dQ)V z6}U6j$d-5qF5Sdl$j!>&l0rQe{PqXbkF{@j*Yb8;XHxY zq5FYqS4c>k9(>faRfpZTAkUl4Bx53$Rj%>f(VT$PZS2m`1N8=x|Bvam8)4s#eh0;= zs#tlcUUxXwjr%iJ-h=9iNU?dmzSl6N)4?oNj|7S_plZ&hdKPsSgn7}B;9ZW}>)3T; z^$-%V-HwW&;BDJZ2Eh|Kxc?u%z5=SMc3l?{6_5t$ZUm&eyAefc>F(~9Zs`U|gOXCZ zyFt2?lr913`%R3!&$;8?G5CLnuEkn&&ad8hVxmBk#zAr2COHokkF_05twfz5YM8ix zXC&QVVo-#q$jBsIM4FFyoNQ60E{cc$OwDDm)^?(N5ts;h2isZARI-R?aq4^dtE4;q z+*Uxn|8?lxHGM>#tXTQTx{as8`UaTbo}|t5E&IQ!;HsOjBy=&uP3xRE{OeyB`$1)n{V36Sb! zeP}~D@I!EMLNQae_Z~(X52WI?S`N(9-Cege-D0dk`K)E)J|jhP7v0QcMyVuaKWBc| z=#JlEtaG#Poz73%U+QQfjzg2_yjY1IefXPI;&&M0%bP)em5VqX ziuIlDs)2Elu|1t|X!Q-+RvzQm^0Mt_M`F}%*PyQ1`nY$>itog^<9XYxbVQ7T_~=@A zk3TQCf6UewSXM9p#@=x%pXYbGd0??Yfg_%6vEpqAHtOq(aWcw`ICEcuv=;u`9pV8& zi*GDqT?{(^+M*yxYuJuRsD5$#3n5@97Ra$R*9#MVFYYVQ#q*bp(n}0mOIo-cnNqFx z`;BDTitFU}jhg-U(<6h;ne;BIg#~5QK1YqwLqeY2(J))n(~NH`5wVfEd+6l~j=3uh z`DCD%Xa%4QTfpEgEe`eL1g3yziNf-|Osknp&qJ9T!9l2rS*^`o0SOZ>@^KdH z**Kq!c>^Qkh@>51j~7yNnx$5`he!0McySC&`Q;F~y6@&_;IZTIvJZ9)U7V((tp=K+K`R z*rQQ8zR(CtK1P6&ueKvn)o-onUZ6HPmCF`j+18P$%(dW}%WgK>Zb^Udz&P5ndZ2bK z)nWxAN&r54azlmLJ;j!(yLG^@jCv7)CS6xr$x-87ej*i|^L6d3>YK`Z@zl8{A0Gp< zR&iyJof;l*j(5ggQYC5W&$J~5K*4cdK|wEwXMmPPo^+mS@btnCXi~)pUwrmhr7J1( zxjyT%9O|xieT(>oMFb~Gczb&3&CV`4**4;Esg6(!TO&lii$?(&N>Y^F@Na_$r6qV; zz35A{vIdO?_hb2%n1>(9fFJ2eTBnE8>-)(4nZwBq6i{KM?3CSXN-%1t+L7RWceH{` zVsaIiGSt&z@GyNNe=5MJ?6qvvHEL!2I%_rhl2+O4X{y1ha#J$%=n$WC!KLFdPPy@= zecWkUxDcyHbA{05rGwD^-h-yKsz>FkTTNHxzty(p?73%qVWe5FYdEHodYz(0l|IC{2*Oz z0Z1hynm2U~>W`Vmxa`bOt!H|aq(ta5Im>sw0lq~2+cY|#tzXpu&ZGkW!geu;NC#IO zc9EaX9j^8b)QJ(TTmjVzOKeCJ1Azji^w-A5#`PCr9MHq5T-5Lt02KlhKT2gTBfDX) zLdo>nDcGpfSvr85&TK*kQZMB?6xJ7Qh7Y1(KH-+hnZQ=vkx$vz1hwLxu?7#93PzIS zNPLc7pMkwzBA2=EG(TII$(fFyrg08TTRIFRrvsaVT6P)|R{U&uaU2jE{cb9NlO0aqNYGCQmrGA0V&>#IObz`I7t2-djjIlI`*wp@t1&H%`IB?r_FwZB zmcox^R5TJV*=Ul|3vJ}$io7hzJcU_Lx04pL)EIU;o#QG_U(o}Plu>yY%PZZu7v@S5 z_gA#&86^qn=(EnJjp=^k-8|&~sN;DMNS5Qg=ghussq;W4h#$xjcYn15A|ukJ+6_n} zMm@h(*j_@%MnosB0^8o*Mgr3C69HUa$9Iqck0>#X40ZZx5HrJzZB8dG@PQrW`W=Xv zU2y8O8rzVnATM3Ca}jvVB^f-O0>%_AmYox!>kp@gnioe>=y*5SGiZBydZ>B&1VQ{PXf~1) zSYtC^Tg8%e^CLHU1<*fP^(GAGQU`P2Ldw!WHR8sZFGWJ1x_&!z*R;CWabvV2=2?hm zp<)Ko8!8kBw_YOw&b$-^Um#c8TQ#Xo@HK*XfLq)h0HuvL5EEhR<9=GK_9j39B`(HL z-G*hbRrFDW5$qKS&<8Hd%N7ep@h(^7J--`7s3?~zY(S0~?ybP9}&ZIaojV zlQUfg?Odl=gM%Q?1UfVBgFOuAZns9@ZD47H>{pqr_T~#E)iydVH@kN7vc9ARhZ)vG zx8@_(nKBR(ufFd|#pV;5Iieg+v-cBLR9UF%OsQkdzoMAWQ#`#N+aM&TpBaU&&!c97WNzNhsosG5ZQ6e>Rd_H?WZ5^>z?g)5}A#=0rdRr{~6KenCdwT_G-X zl!^O?zIQNDt4XQ_xl{%@cKn#j-OL_vf1x2s#=0f)FG&dxdIW0xWuq0_ zuKHn#>n#H&GLuAPyZj>)JBXS>w(0zeck9^!T2^cDWyzUz7qoi*9>9Zhmy*~gmBBACH`DLI>Av?s4WShf;ON0t3ded|VB$A>AlBg__ z?}9^Fbo(8WjDg&~t!#u->e~zO%A7 zQ}uCrqor{yz-}PbWg^AkI{LT;v@k85IzQhVyhxA3Z=)HvyR#4IZ3y4Q{VJRat z1!L4_5vPrJcxGAO2DVw8Ko;hL3oJl|i0wOfmS_~u8m<_e8VMh8RLxy&B~;75B>NWL z!|}bqrPyYV;S<6qRz~M~yUP=mops9Np*gD>bLS!oGoKxf1MY~vp58bAH~h7`$mlfp z(Q@2WoH#@g4>ez^whRBt0dQhqYfrF{Z&!aEWn2f4#@_a3#n0fyCW_Pz zDo40QF92p6X+y$daAjiZlYxSu{F?f*cgG{uWPUV*^b)^lVC4g|WKbKRhHsBL^<KuT^2{@S*-Sg%lRTz|=5Eq5MpC-Pg0|ArQ=6w;?G5kp>ayK)(4#x?$O#e1 zLyYl9H#q4E=abux1Xds6ywfSNTNiMA${9m^;&# zlySoKO6h#+Klng{CaH!h+*^ECSd(+r5lFQZ9Y}2fhm?3~NEt*JeVURyhH3)QuB@}$ zi@KkfGfJHS0ACmQhITD>dC)v|>OX&f@O-7fDcGZ9mieaU+j|wC=M8@}1>U`b|ABw9 zMB-*)uX)K~5lIy(tTkS*=^Z$l8G!Fc6cHHPL^&29mif@!gxSOb&7$z6KD#{Rl)R3U zBy~&J-;I}efBt!L)gnMAKUrLOuw_9S0jmJRI&FJ8@A7bV05T5~2DKMMPW>Blq_n3@pmF^G$v*E4;jo<8Or!{0_rm zwi;jFeiVcNjX_r`bRZKm!YFUR*cxhpLml0WYk!!sglZ7UQqaatRiS+m-t_3tCxX=% z6Anze96k-x|H+Zi(0$9++o@y|WS_rH9}I+#7Q)L+=CYj9-Bmwz0~9&})FE!WRN%_G zDCPi+!d3xWlU+LpoUm>c59*p?d<5EoaY_qb-XyxDFGnZ$P3xO)AS{RwD~4Bn+wo_; z1H&wk$qO)iVgK!a9p)=RDnPABsTg0TDa=2}9lEv9P&X~+24wROL6Nl==toDYnxAM| zFE%zN)}U> zB>rvtKMUbq3s?xozraE;{%q{9FuOCIZU@%EMDZ+abYUm3@emXKY#okYnP2;@9dv?X zQ?z&4w|9$YYk_#-@$Zw7THaTw&Pe*zs!lyIcm@9jb{bl!*g5IMg={M!HLeZN237L32@{sZB<-{tT; zC~u>q{GTQ!;_*dW%C~+!zT{{upd=!NB+DobWsJW?BpyS$?DW6xX3yWwFVayc8DY=S z$o$V`y%2|U+^P=a-kgC>e&8$?0Tb{FR9soRHR}JqOGy$PDE7HeF_JLr3QxK9y59%b zU@y3;tJ^D$e-6GlY1D7T_}>uc!}!^DyXbX$(f!bWlLlsdH=6mKKX>Pc_AVsA3sg>7 zoi<;n10z;;(_vxjhGP{Wen={Gd%jLJmDB1mMA`l2Dd>|9^`xMOef!5ZU`SJoiQE7> z|F_k3ZdmVDZFNcm8}k~PcaUPK=grmWXswe44^U4(`sN0-%6b4;Yz2bZ0OXbo2#62c zlky3usaRQAAuLy>L9NZApp1e-f<~3OTPN_)(qv_0ySs)OB%!DnwLMoeW{Ig*V{arQ zFOQTs*Zyo0Bp>9!uo0fl%kLgGnFuJ*rBupDOUFEZ`2p)KqlP^Vw#P$sVvSSj|Q$9Y{z>m_XJWi_c-6>>+&wG(Z?Y3*w|JnviES#@*+R z$P@4DGm{igz^a~T6A`67-#r)qR z!uj?~xfmG-*czGrE>8DO`#TL=fG;|Be7n0b11Xxl8}Q1*jpSKz0RD3Rp+cCjAi#@< zWI*Mm+0DO73;z0c7mv+2V$SF0ikkQ%EHy6a9DJTP$P4US?%`l5eT0M&Rw3<`z9)6^ zQM{Y9%0hjJ?<%sX?o}cyILpWZC+gK-%h5QQcZ==<-C$?+YReQtyLNP{dG=zR+u{p` zST+FG_#0`cs3e~0v^0e6R+J3=nUcaRk=K?HD_jhL$cwRpH`sm$1lr?kAt?85TwENoWO6qJ zcm$u7Bt`st1X2%xmPLzc7b8y>QX?3x>l5K08+RYzdum2kcy^uz;%GBtB5)F7oYESyn>Fyl5boDv^C3$B+v#K3iDSG!+YqfWoGgW2@Grd*G=Ms zUuDlkmctXV6!w7UB7=;KOs0{rGbAAp!n?K)2|k+CO2dir7T55s>goRil~ozgidhY# zFJU%x0ykXnK~>wW!_<8wMl56xWLRRYudD9nAo@x64bE8X`kbxefR8+gGpVFZ?$sQf z1N`>a13Boa*Q{?1l~$5%K4_U+#z1d9tc->*!Jp%|Me z&Pm79e>*ZXDdSUup;Xal1P|tP+P2h2u~@ML(^TUzp~CEr1~6&z!3k#^Su?&rs-1pO zmPvr@k;Z9-#L^k6#S9F#Q-Q1^H5;6KWu17~M7qc3~7r540jsxyr zLd@L%1Q#KsO3y8(&ftCX@G%X$vzSzzyV_+6m{eH30<+qTo2H-+DjIKPfl0buP*y$P zo!3*4f&+C_)m+C0a(biYkt36Th)U|+k1$0@uwKj}+_!PZL~7NKK|xn_EMd={wif(j zkc{H#*8$;*+>Ne?%OC=4cr}t=&m?K}Y2>BDAKiUmF;o1yPT1(nMQ_8vU6nay?ACxF z<>6nSEvHBEu=Z2!Nl)NsJgMQ-x^xm+aWPU7Mhry zYc+_KwVi+~6CIj_q*JsaZd!K)WUQr81b^w~@^oy^$`CRtnkJHMbNe{NY7vm^RN!n- zMcgg+05UF!mawx!pCk#`>^^4DV2Wc!pB523aM(rfellY`QDu<02w2mYgWg9FJY4s= z;+3@=Ox%w}A$eF|t2L5$f3W~Gm_$~y)yGLY@^{VdYtm~uxE3S0@U704>4`NS?6>wN z?g-W))blNDWnPyBH1CprOOR~4Jw9nm;pMXg8|s}I^{<|n6SL4(k^UL1R#G&DRuuJ0 zN&zWPNry%n>Or)hIi@48kH;`%`vj^PZIXw|>fdCe^lW{KUmP7N`K*#weCJt(xh|egbOI zkv?+7{BJ8Vh^RMAn@6^nn+JBXqg^MWa#ON+oj#28k5vPlbvICjCKd2F!QwAorbK!8 z;2h?Y$t3|m(Mu61@+HSlfvk$`$hESIMcdBwb4#>IK+l8CuJ1Zv$H+k2`fZE(2=)%c zsAxi%>~=y?@OgkK@1Og9M}{WTx|=VtNb@Q7gh?hk9$Nqn7ftL$DGNlqWIl=t9D|e0 zZ=|Ls7@otjcmcQAe!aeW(1b(MbBePf*y9(|w#y6RIgcR|lgC!+=O08>7Z{%j*Ye_3h7uE{fvrx6BcZxmE7Lw*&1%8xC>ekFSBA))@_J;(5C5zdV5E++X1#97XzW_cbX`Hy703>mHJyA) zw;aIvj3?oz&T{GHQ_fZn9U{60S_xre>N{pH(4>0@V|&%jVn1<>$9%SZ>}R`XKGIPn zviLwGNv-EHi8e@CdtxTx8aR(1%n*fTf0sOpsNrfq2G&(SP1-C8<4pR$9CSym)m9?h z*d*@@&!Q9rKI--J1O}!8Iy~{wL3mrRbx+dW;e)ku=V^3ETijuu?yg8F+f2sJ{``u} zBgIEjgc>hKP|Oi9K(fPzjm8j{z0>i^rShU+^>zb7LxeT$Z5uE0$bYJ+NK8wfCLVAl zHhup3E)C5t)G)H+iDF*b{(nKBURLY|i!%L*oMrL-Dsk5|?5wHD(49X@1Xtqiyg##v z#1_zI)z`neQ3$WlL2CzsOl~S}pwQ|XlvL1c+rR$0D$O1?;hx{gVe%mHu`8^z#nJpR z^Mdvn;0qnkxOx<%$CCENIHEuao)X++R@g`5l>+H3s^!Ee8oyyYz;S02K0tPgY(1Hr zEhCcVG(%!IN2)zIe0D zRK*zTcAvsAnqw2TfRtg@P>Dozc(T-~{&s;%{@_aYlschN~;dUL!8&OA#p^dJ{QGhFO)?zrW{qf*}g2TE3Gu`@4?xrF4Ddi!6si z6Mhk1HWJ1lWj(bI`}V6pG52?N@%MY6zM0(757XH{{}ADJ;Y~u|`|kF>{>1u9c4)(; zSz&BoHT?Hi{`n0+uJ;GoYhSmp8QY)6y)3pL)TT2e$gcV?C)hwyaEXEV);mSNlL!C; z`vI~uy$W+d@UgT;@XTigdyaGjSXNQs4J%@xx_2a!^EX@hPwH`dRl+^wK$I`GL&xGa zq53CBNJ|A@r1mK%zLN5%F`@I6-dmc9cxZ$Q0EkJuAV`h?GF|-7XQ3&;@j7i{4J=V; zoB*T-xke^71kK2Q2)sU-UM;^Z{`17c< z;R7OJh}(fY8YPGM*BEeo(QaRA;{o9(A~z5OHsq`T)x;#gk8aN)dEuya^$GN^(g+-Ju2&f=j6Jz64714N*T-wzDPv{k)o3p1cGR#Uh&m{ zV`*i8YcU>ZdG`X-0fwvd>kujkY(7jugYpPUXb33^@av@ zg)s66pqZ}3i7>uvNkvjSLbw>v7F_GmOtk@a!t{_HyIPL*Y_GugcAO;P<{`d4e#r42 za`p^LXVKdS*M^^?$ano~8C8!CW@f{-J=P{Im^EDvaqcwFVf~X^xV>>J4eql-%OW;u zF%2facL0#)LA?nC7=Ow>Uu&Bvc|{M2iKPQJ!{|psW_AS#^Q#Bqcy?VRkZM90I3cNDYbnS$rZC&7%O3&|MfYrayZTmY*s4{(7fn z&FQM;#yp+keaBOo{DA%OZBMPInf&T1rP@}h8lXYSv!3p-0^A#ufHSZG;th!13G^R^ zdafp@<^dH}$*q@DjUurrxVGWr(x|x1!cjukt}cK>7q8d%$w)aQt~=qhuaren}CK8F-+XG4}5aO|S_>B*XJ_eU%0B3~fRpu{WsbnV`Rok>N=KXy9j5Y1zd*aW;VTY7Uqgvsi>k&KAJ!;TAJk3q6eK$@E`{=&kuuncc66MUZ zzdIbMJG|j~h-W>svUNr}-9v9wosaj(TDNgqa5?$VrOx|>KxH>ms?R8r8 zX)7Y!IY=A3PgxW*0yOqU!pwhHZTI^Vj2g?I6u_j6> zUrk4_Jv((>dLQ0=H$yT@P zsMccg$#N;o(FFkXAznY+R&g|q04%wCKurfS=rkdW#kFer@D1!joEoN?XW*{SdgyoZ zZ6Jlg2SZ4rzktG>5at9Zn%HR&WxsC%s!NdtX`bzTjJnk}i%%fnWRFJ|kqd4Pks?V; ziEP5-YXkwlPr)|eS%7*LTyUuTzTM4~K{P^~0U^i|IWWm$E}-NV&C64=Kb>cc{Z12Z z!0b;zQLb(>lONQ*BQ^)r^MF_}YVa>#+A1^^DjTawY^u+h1Ao!UUQ*b5350kLJ zOGXewA&W76d4Q~xdaA;N@Q&1r0Ufe99B>Gkz@|qk?BU<4Z$T~$F7gWgX`qPG$UpS{ z{rf}k(Z6UsY2!lCtBQGi3Ae1T>MuB!V4pakMp8W>!Z0ufSBxavxnn_wAmx=`{TXLo$f@FWj zQ*dZns6l>Z=cNMI|G>^1xZ zf@=(rkG(Jghp?oa9QP1%07m2ZO-aHrw1;)n#d3 zfnDw}gtLP`c2y|HTIV)<6(;N^E<9P3)b(s!@J~%SUKS4JJq|@u1{OV?QyaxbHJeIB zxMUI7wm7FusdtbyWZ5@O1Jz4W&OZ4&SG-%OJ@ah>wjGvlp7ABM^EyokRs_IA(%|cq z@d7+<P^=O+@?3?V;3IWYzsV4ADV{pn|j>a_R)qY_ujwf7Nxg%aUk^ zeFD$aNLGz;p&1A%dDI+XQkv zLeH8D>Yw@q<%Vkq;TM<_Q(F%*yDO9#M_Q2*Ut>-cOuXvjzW2_gF&z8wPn06P+r|45VkZzz^z?Uk+J6N=u zSp=gHAx%>;8cn+d_aLzUgg;A$X{sGP}Z6#_W>6jq|0{{=n=W@V1Y82Qaj8osS);( zc-HzOfT@&I*N3yZWm+U-&jZv;|*7OfMW8X^CtTKPZI&Cb#op%cHLSH_oo{g4> zD-x4$I$I;iotMmwc+cBMo=mA*e*efNF{`YLpVAdPhE6QvibJr2^{XM5bzT6JNZ*)G zIL_@=`4LKd_0w=}8TTI4ES=2CO1*zptRo;8+U{4Gn77oFo02d^#rB z8NP_ni7IrLAx)3fpNOXHho0G8Io-|(JOjeD5$sksNvQKm$_tNmc@I6qz3Ro^$03Z4 z#-iORHeQy<0jJNWqJa1Xa9HP--8X9e>g6c3{p}q4`KxO5C2Gvx3gaGC}`OIMyYMSJ- zC49Ybp31G0%+NG&8qTR{4KrnuQBF~Y%Vhh2`^i>Z^yU znp)4V%8Zx&Hc_$m9u3Y|_ji$XY9CZb>DqBBP!2};Q7zYdoXjLfZq#YQGN#!Uj(LEG zNQ)14x$vN@wLi610LhPpNgeZ_c!yJKJAjJ~o2*)KpI}Tc;Rl7Uo0G(&{!tbS6M@>_ zoz)hIHiSeJdFz>Rn;QGEM#5|ji6tD0er?-ucsFHQ+fC++*Yrw?xaN5kCG>sK@IT_U z-3VXq#Qn`A|K-I{kt9VD%=Z*xL92fa(f{!>IIDWx|G&Qtjn9jYWp~7hC)>$+grTkJ|krPD2oVUF{;4&i9e+SP)jfc*pn3VQcj5Q z1xr!pd1k-y^}X^pIQ&24B4JRwkZbv0viN@r*w7y|;JId){`g%A{Tqw?>#ZswLd6Qi z`yy%oeS802&W7g(*xX%lvC@Aj4u+)eR`t%|2F?+X2Cq}oJlyJCTuq|t3#(ErmIv2} zD5(pORZvFP3t|o6I$ih;DOD7_(2ESasarCKlQvS{Bef0e^Py5N@&(cvV z$*7m;xg_zR0o(gB=@sS1#i^W@R{G`DDRpQhop;;k-UND?=lc4;GDZo*gn2}Cm)b-9 zlU$h~{FIj0@wi(KKrFHRV_D*Sg`pJ z6K9c<_#D>It(S)nB^?b4D(f2<1bhjN(@9jXSWMz9Mv0rLGM61I2u^maw3;b$F&te< z8n~)@&6IF$l5Sjb98IpIjm{0afPn&i^Kwf1`uYK1l6q}xISq{*Q z3PC7DkF&hb-=~xr_-DK9EgS-=<(@~XT6)rM0Peg3H1vm4XmbSkDj-FJVkcEj^>vy^pJd=mtiYZ3e6U4(ENj%QP}76Mh`qe9qf3-%q3B zlohub4R&jYW|+88YLpd!%!@6gv2>uFC+VbFe^_V|663A5p<&bU5uxV4_O1W9`C_`! zAUHJbuoFqW-m#|sY}3KMjU%aVDC&6A;zo;!sqwH@KIJlA-eXmLW3)z0uP)~dlo?+O z&(}KTgTmC=j2y1rTWNFi4`iEAWugd}euAbrIT-CiH>MOgpt0bv0y0V#yCN|FG^nMk z1{BwF(-CsEGcJ&RK*~Z?^z`)ck2xa2y~i7X+H2Bs%XrD35LX<>4^+Bjf>F*w8T8s8 zsXTru8%sANL`64{DjU5k)z|2CaVe3XU)VRCRvM=*P%D=kglsr}j$CecWXzM}L_eMN zMo;=;?x`Tx3Nhn#XoH9J_~Vy(iaV*X@yV0~*9){}W@d+j4@i0bJ!z&gFk#hS}mG|z3I zwXQ`TW8t9sq^>aI-w~4&4j?!45lO~!@91BCpbU5g8iq7KtxH!(%7;GFR>o z*6E0gFIFcP^jm?+ydkk3(d9~#b{w8f1HDwG8P$7_)AJ*d{^jN6qq*6%0tNiO8|yC` zyZAhc7#K^dZ!aWqmE8zRO(e4G$#r|qBJkMcapqS9;=TEbt<eKz}HMDpcAKVUuja-6n*=diP?ml2@T5dDX+S%H_{WekR!*>mXQy9>S|9 z@#gDSt>>?lc#?ZX-)tHO?|h$eRoz!gtF+D z)|TE=zB5;z#>r2ttH)f(W?6!(>J`-s1(Oxfx&wwf94jG7>h(KZlxe5Yr|?3ku4Y~7 zMCA>j$qD-0ENi=r8kNkcKf%V8R<#9`Y2$&XVyY)pdxfODTMx12*FdZBF(~PA*(I*b zo=>$R@9;algHE;%=)|D!*kx#Qs zgm}1h@}ox?*=BgslQ__kOD&+JqLSU2;aJVB$?92Xxaglb?#fD~JV1EBzO#LNecGuI zn;b)WBk&>4(9l>~Qu4{CXk(vBONs0}bYIHTt;r!m>(*_{SgGs zmQJ*8OOtNv|IP3a_)Els&Uv@#B;8hms`eX5SEjwna{77W^|=LGP4HOF&E>jKP&-sD zIiv0*J)n?^iU+Z`{{J#Z#<;go<*tn75Ca&OODHpBQkPV-w5^NqIMQhGAg)u0-_ zM5O)As$P?AuinL?`GEZ9*X!KXg10U`7GuV#Py*o~XiNvEaQtAANix9VKs+~C&xmi1dvW3~HqgGscO_rRSBci25VPH{D< z(j52~Sa76^EpRzRrZn*I$H2<>G1yu-Rx+x#R8RzdDyf(0`l&|`dRQgpAORfzHgOB3 zCaJ?IkiUBPd&?w*v-c5zJ)NeHWb5CW39_qxz%gavAz88aSM|VvNRM+ch-XO4;I$eT z@Nye(enrp6;>>6`ZT6|UlAOGZMR9WMWxE|ysn?)J-RNQ!pwD%i6((F4_mNJ=+~nnH z>1U)QP+g3j5@5Q8G&g#gc{{jO?!Wg?rm8W2X;84Wx8J1Mw z1RP-U0L6}ChU!3;$lG$OcR#gG5pX!-9* z1|nbgxYOYyS^dM{{rAhhFf4u&|q6Ja94Wq2ONvf`y~HJF`AZXH0NV zao$OiBaWpgH#*~d@1=%((6Q7>$Ls&}VRc4ZONNtYa9lmuF7ZoG6{Xw;u_02?qR)+0 z^@oS?ohjPTTqJb_TYqp=LcuLlQyBeSGkjTA`R}Vzgqtea0l><5(DdPbEl}!GyvW#8 zfBw;tU`E}O<$?6+_1CLI{owcZ%ZYvY_Ew%0>o^Mf6>)#D0HgBOM;gQIXAXflt(=Y! zmI9a}$Kh&>x)Pq(Byyz;DeID155J4X=a6+j*``C=1K1P!`zVC8DJdz&H1H=;s0A!G zfEhB))c8(3qX3ku_R0a;Q}m~31=w(*KF_LyR+Z|1h8h~V4qsts=W3|B7qoA`CK$aE z;%UF`nF7dY({G@}-dTs#h)@1MWdj!oyPD@8irwv_qsX2nK0 z(s zUVzdXplpK-%xoh9suvcS0W`ap6t>p50SP6Q6RP4s@xvv#uZkr|JTNdZDL5=%Ff|d4 zXVSrXr^{*wM7cUa$G_Zt-xPOb#P2^xt+`B&dd z(Sq#{UM^8p%WAWonFmw$(M)<#J>XDGr0!ymt=%zSUpqKk0eTgz`1_D8J&E>kU=@5w zcsN^o2HW#OMWT(VPq`ztI_?|!_P_|M7Z_bzPL##n&)ES=h(K2%5!ht4nD&QC@iiHA zq4;gvOqX|{*~@QPjDIjfNz0P)Z*Lb@#xZ#$k)1;U5VAQ!cV>M4oJ=94%~C&Zc5&%$ zEa$0dh!&Nf)cxT1saa$?e@5)Rgl9Ik$z0>`LjfQ^r^>8!G*Y!roAhF}sy^@^wciyP zJEy;`W#d9{2Nq)l{-j&N|G5ETeK+f&VLL3j~-PW zc=tcqj1@%61NtAFfnapm0-*?|wG5~B(g8jRl1UN4{*OkpF=~UQDCex=`4|vK$pLQ% z2CXl{b8IZl6SgV<<88KCuHj8k0;0zpD2xc>J)E)mJ6IHG7kg6Y3tks1pT~WqFDPcZ zPl))8HcD%Zi(m9U*!(zV+;icumcq$yHL6xpZe z7~%CxhUaQ!dEmiedk>RbTqpAC$xWTezzT(+zlN>|JTM><>cqn%Zno3Ek6w4a`Eh`F zcEt#pb#15{_%WM=5E&1fnj=8M07&m8U-zc20k~^_vKHo$hUtX6fwLFrSfx0cdJ0|c zi=_ai6?UtcuV0Ng){7zm>~|dk8QYJ_(3~OYiFkz=dV+XSbfLER`2Z!)Qmx9NZ9*tU z78cXwHHY+4?4eKCY{OT!6XV{#F2$rupHV6+i`4pIw-4=#i??g}7ebj=REOLO0}@c?GX*$g<3WuIlV^blx%QE%bnS6oVEH`DKI z4VtZp)0zb8xRzHz20WEVFmg5hp`Y#IcsKnI5BI%JrJYr(8Lpi2zrKGtmKXT-vcWEn|6=Lm z^Ewp;kRZPH{Jbx9wi143e}Y#iQNgECO&)`KM|v6pe4QKcyW9Zl?I5j4T$WbTXDs)i z{>y;FK&=^nSYcisu7hcJ=GdG&(9iRZ+XP^79Z=tw6~@OZn}`|^uH|Mz}}BO%paHmKIBn%ptJdhP7b zT92;m2E!=^g|uce9g+e6OpS4*$%fCYc@3f;2D3da+j@;EsMdIM?E#@IvdyAFGq-2N z5#Z{qu0a0Kzk;;NcQ5=cxSsVCT<*heihCrmyNBH_Ki&qX3QW^QhZ1Vy*vVhlA9NB7 zE*)#2zZ-^ko!xk0DqVT>_mCF;j&7>dRN^RfPOHA(Hq?pbJ=m2cyO%jn#loU0_Yyq) zIoE;J(faAP&zrPgnN6&qz1Q0CH8BM`bi>Q0J#@u4Sq*G{6`#&;ewp;^8gE~4CPuuP zE)R}XDi;qW5BpK-U8$xKl9v+@R$hr7D~>>AG5tBmaIvS6iLHP0<~-f5#H7TdOLw$k z*+ILs%OSHO>(rsNX7T7MbB|7)kfiaHn%BiNywdD-Oy|ynii)Bo@_ifh?BPV3r^LDF zh4pQIt$!7gk^nZBQ!$*lL-7DeoOT?ESUL1V2{GgC~Ka+U120jMEZ!ctTkdA-WIc42@;T()(Ke`2~ zz)v(F<6_rw{VQ+Apbo2F;MnNm>nk{Mm>A<%S+MA6cc33>5!lOVtp-^tgC#+bU)g>e z){B4glCV$pYIifxzY7PG+TgmiqlBF|OYZTDBHLhe-O&Be6$E&G)eHp`-c5(~#;3tfqXBxV=(8&17LqEy6Ht zI>VFnp;Q4>jt>i=NN?Y+dFq7+YPcY7zN&LMJix$UW7+nd}j%jzz^d!F~u_wT`C z#T3W%59K=%OIDo7#8K;Y$B=a=vrxFIR6okz$uzDDPMxvS<}BmS$QiNphPs&Wc?g_C z2Hd9QxRu~F@HA(q;jJeT;_`+X$z!~1Z+57aekDL@1{Cp<8!yA%o zwoYUun=-xlGWSD`=G#D2{>;el+tUtH^-g>fMOT;}H`6vzUIx6Ujr1YDOc>e1@(xbg zNLVFw++&oPt!zYT&q&u(W}v(hVfbrfIU&=U-Chk_84=<&d&W?fkPtZqMda%WP}N%o zJYeP_hM}u12C3*J%kYaFvnNeJUfh9a_JtOlxG>yhhA;cp_4R!Y@883mMb_M~X7(E6 zx>E4k)L~A!kXkm0*1A)QtZP@SFzJ`2dWG(GKu>4Ig_r_ybG#Yb{_<0Y;oVQc1DQ^z zGCTt0d>3|1g(m2~J|oz&n1e1w=XZh&a2-i@vXW#O7pZ{NE#a_@)6k+^r})5uU9Zs1 zW3ka|fD^?%@Uv9lr%2%7ZUFE_#y{9g*A`svXKD^MPEp?t^yaO|#jJ#48CMn)_pt(n zNE$n3=^OBPLxdlb#SlhgW%hE9@po9^@12md5`1Fk+lr0od?Ds{@MzSe6lZCb@{Xp%x5Ub zDc-P%wVnp8myaP3ox*_8D8=|TJ$)%y4}4~`acqhAR<)#;zMQ26YB$a=pG+$gtvwSP z+`CtGwCm@FG`QUUOPqi&{k>h|=FL2ifntPH35dj~5k&-$36 zmlU6eh5N$iQNw;!1a}1gpP%NJ2rJ!h?t)UIoMXYsOZxY}Uu#;!Yd~L#1i-rXjVYX|I&|`7U)V3}AuJ*o$!iJWRHqwv9sJ_| zOoxzWA9>%I)BXK@N~sps!7_mSa;WwIiVF(%6~+Vo*Uk$Mv1olkk@~^e(K;9YKC4mh zmk+$rl@AeRFUK<0hk$y=BPzK>_SL>b#_*63c!NjH0bn|$Egyc_F9X^NFFvXajF*su zZ*P1`dcd`C+Vv6re?0_6--~e)*Kc8UP<>u6cp$D zj`sF1gCRD<*>|9HH{cX7=`etDOFQTuY8e&BC=S$mWH;|3eeE2R^8zliF;sHc%RhIE zKQD*^26;vY7S0{?{kyQNuTNhm<&piqfL}~^u1O0E=pR4s^`UwDCcK$Z+}Ga?2mtN_ z1+%m|Wu?!!sa!Tuz)w^UumGqxfX+0x>wfkCr;B^A5U^sSk1W`M8p0PnbV|x&3X!~R zfMthJ^{`gn1}$b7$iT zthYEA7$J9c{13ke#s@9CAY5qSjDm-gbAsD-rqQd8<)whzVcyxD9d@hZXmzuA@|bgk zeJw}CCAY&B8T)ca+Af0yuwSn~KD|0!q|j;fTmyKth#!khLgtetRsj~Nxk>b@DB$K` z6~^&4CyFijyVwT3Rvnp>xNNkKe7XQ->mF~WK{iDlSa*1DGf;NYfr%km%PWJyN(4;m zWVbQ}^JzAtUPJk%gl zih#>ho|>DFjB{X`vx|iF0iXvh>Kp4Uj?{x&>&7A$)F(C5Zx(GWCpCsNJ!En2=urIG z&0(+-m!7flrIzNOM($o zwj0c(AclSWeftWqmHtc7F6IMY799bGP_5CC&ReGnu`h|Sqnc4O!j19t6R@^+chEi@ z$n4Sav1zxFOI)=5tQCXHY)ZSyWgQBPIjPL|K2!B65cDM z%vY40*E>uSf2}QLQOx9b8ZUo*8~s4LhqQ2OtxzLJr26d{)=Yz-L@((lz)cAUr21Q; ziZvr&zc=WLrZ}AA*`BIK?usH7)3PMww3#tIDO}hN%|k{MwMBFbj0%hDtOhJL<1g`+IG7@Hkc zlej&CJQHE6Hs)+(2iy(C;ZTUUb^D*@8W@Z$y^$I&l6Yu1kobQ%dkdf{^EPZ8kPZPs zX;4r?NohEQNEoCjNGmAa-Hk=MB3+6SA|)*i5=trE97H%EaOke@KB&9%QtH%T!DLRMAQp&8g8HS9Plm&775;(Y(_;C&+HKRC7>Xt7F9|>Dz!{ zk?_Xls~)9sa99y@+T`}!MB51sxrtgoy3nTmF~Owz@WkVL;|&VzN0Bam6|1y`2k&>L z)LwLolQKzviMAQvz0QdEWaH0o3M*U1PKCzi$`7FPzklP9h_6v$_n#B=bM;7=87y7A zwj8C>A%0?SdN9kztg_N|NqDY3RcP94VQ4SXBSp#$yC!*)&GZm45N)$Es43>S9{1Vl z2-W&LomOo7YSEa##~wMO+{nqU1kaS>1N6qm@x2+|m>O01Sn_Mng{%GgSojE&B;8I{ z%_>I>yAam|T)ARCkjF%PhMQ0#Hk}3)xOg2{fPC z-Gdg1Bxxu7#8PV~DO6i50XDWQ>c~Z@lTn=Cum83;V!>eDJGa(KO`?V0tJB+C#^+3P zI9#I~Ok>48O&40h7 zo-HS?oGLu>vdpA~cc9QUX{}%~UD<0Qj3FrS{*HjnF1NOh*^h=0PV4cH9rhVtkLp{} z9n_L53zkt9v^(Ft2v7FMcdHs=&=Y{BZ5C{z`NOSFA>&`)VwUrDMd2P=t1xQ{B zzVy{5qPR3O6ZglwHt81KVpSI@>FEPU+M?w~T6F0RnvGAc z@z)8rY=V>$h7c170@F;se*Gn(9IOT~Hdkbbz#gIXzqSrmt>qj&C#L|sx~!dJO(tRZ0{ zW5kUh1uF~}&*^t$-b_828hLY2Q`)s%iIB94d*Oq6>fs3$9m{4X)E7KmEPj14KkS{= z84(AROz%BWkAia<%6pWPWv3M*7KYS0x!cWqY%0hSOOYWdK4GPahDAjWRlFa(U$d?n>yv2dqlOUTz=nBkBeg5(d-GGJ4I#29d+$6SZQ?cVLblAv4ws3X-Bx`|i;>WQ&+dvkx6wA0skbP054+D(?s!4T93#qF ziqqkiFE7!(IEXMXl&=)Y4fBw0>68tZ!rO40KwAwjj7}2C%PSgwi%?0MJKVtK<^9^5 zNf;iC%-O+S}LSRTcW6q+%@|GfgRqvsU|fbq3>d1QLNR(okoOc zd467Yi_{pR$m3f#ZvFaf;ncS4PiLX>EnAZebnePvxmdBy0pTEX@&}EyjOB@f!)n_7 z`W90^#QX;-wUf)IO1xHBVWE7WV_B>~!UFO1mjne|y+?a}=_aqA3kdbbb*~MU163d* zIpmfwN$!1gb-7h!t4?Y@vCLM~gooLX8gCWlB#v_8%Q2(8b{$8b8NIE)Cv)a5}Uv{;krs$$_te(zi9v7$7nHN@+v;7W^-5uHO&Ru^4YIdb3x`46_@Bm ze5l=`dBPVZ-R^fsTM*@n54)gc%uHXSLTL(-0~hi_f`h-*HEjo1FHzO(oOGcVYBboO zXVZ(}Hg}(pDt&@xjk3lJcny;`ecAK0p5l0{d?y;wX=rS`axR%f2_sn5T*5R&NL-k- zwBa(sTs{cO<>lC|XU6}+gN=X(^||dMM})=~n=XeDNOW7Ls5p(&q4HlKCMPF9OD=3Y zv)I!LtfWh~3s+6248X;C9C#{8`{`rCH~5&b9#QDTOU14%3#jmgRBl!l=YEkL3z)(1 znGH+bmJHd7W4P}Suc7#4C*?xa7yhbCUQo=x6{S?}FyVb8=~ZX-25E1pCWYEl*&a7t z#;+dCBPc_+=6unGJ+oRJtZj!c?nP;m_jZ*DLr^6}L`jYi z%&1nskR_H>#VWb>=-beo@-WGzu#vWz6}4iOsWEBECA5R|nsI>xsz^nR)1l(M*T+on z#F>vqM@HARsh<5k+KUmrQA=f>YP)BE)-uS5NQ_PuD6w`UniKm{)>?eS$IPy6@VKZKn`=0cF-i26JPgiQhuOh#S|u^& zo<{@EMg7|anV0P~kl=#1Co=s3z8j4&=aO*iImcR@qjx_Dh$^DBC&D3dbD!etG5ID%%@KuA3i zvL+Wod>_@Boc6F2V$%jb@L6?EO9sLWpq#48lRXB(Y36=)}5y?LgKL*Tr){X>`)_ssx$9+}Pd75=_QKB+4?buE>b$=$XxkZ?a1H_Ik7 zE%~y4A2Q zoI?7#p!HDW&Y9OG%O2l;f0y!-cAh*82GtQyIfTmzBtnV1X@57I_ZC@q# zA=$LR23LLk&n^NMtdG++Kqx$%t+gpUuyax2tpVnaU-UE*RZ8Yu_d!C*xaTVBB0TaX~>HGpY-OYyGSBhxyYkxepX~+zsllvc9MUD?agVv z?K6qv;f!Ohp|84~73!7<-6cOR>T<|YIU7>PG?#nMRQ7v8mGOyWA)ro<*kn731OHt7|E93~ z$thtzy~=m>D&@aEf#0(+Hq5ShT><~)=eB79flF`72{HcS0ecnv&A3uwZqd-t$hI<0 z2>KdTtI9#B=fV9S4T6f<@YU&^@x|bcK26?_u#Q z&S#9au=D=*t>4$_UkXU5@|m%o23B&aA%tXR_DyT+HMY8?iCUH%tvqEd$&2TIV>?#+ zd3fT!^EF-_$5gxg*$`ms58xOocVA)UETFk~yEU#>Gbcsd>5ROB5>%*MGtc5`ae8Uz zI#^&qa(H)ZpaZRS@bu67q|XK~c7Ra1={KCLV+a7E?1ci41l|fPM=;sxe!K0{cahtu zlzODp`brAIqYet>d|M!BHkC=8 ziQNY-o* zM3Dal_q3)+NzSVC{xjn{%zixwQ#0dpROkJcQX4VXb=vR7Qw0y#*nf1T9$n8-96k6@CypF++g9hk>g{j9v)JxSc_4BzHY6QQBL zr3#kN7+yEw7EhmX#$fR^KjEF){DYpCEl(EB`Vvamlbzh{1_?DwHP%|}k;ro|RIwj? zjhfuH`RurFRL1O{b;tPJgW>gf-d8`6uNntG`ef!Xvn|A$q?aZyqDM({+YrhLt5O+VNj6_Ze9Orq7^O^CM~}q4w+Y9+Q9dSb>#F=VSw5xPq>5}HEcV9c z=XC&tL5~R)J{f&57-Bw3>!o~Q60^sOlsOb*S50~XNm1j?g`s9qJeoAHN`^xubm;Ck z_jee;0y-ftT&ABdy!}JCMBxU&MfM%e(AF59#G!oEdQpB(Ld=3ZuK|n06iGK*{jgf| zU=LiZo3Y%&GV5cB9Z~0~zX=Fzdrg_XC~@py5%ZZLEuTmVFr5PKSV0zR`2i}gHC~V- zrakegnhf(J8qZCK#p@_q-vlWd%?#C+H-+gMAKVLr^Kfv&><@a6T&_+_UV06KB)iY2 ztS*QBZK9t39<|aYDm59iGq`ac`=5x4IG5F5C~nUlls#uxp--x{$L^9Dplj25->^c( zp~6sv;`t=VG{R;Uu|VX5{UkiJF*g0N$x0Pn7L3Xn2V!k6%WOtY0-?~`OU^9PP%H{A z3+jt^u_jcL(HG~#^vfwiRP;_E7Muj`Lo;u>;h4nT(tBs5SvIf(gEX5x>xMGFm*Hbu zHq!9u24kPVkE`TZ+y)C%Ae5RDLl*+SIzXxb<0f98S}dpUCu-Ty_d#0Y)Gf}c0IR!Y zXdd(N6d8D@zx6JHAh%=d zbh8t)iL@IMybs$~4PH{i(YwrmqkYKtUG(YzY+yP*^6K0OAGAi*?;}%W{G>0NwmU5>?sr~0i$b*eS_c=!st-blz7s`v|#JTk< zh7o>ii$X7It+ou)575JJ+2pQXwO1PIHlHXJ&gj}6>N9O7rQ`RWm5t`sAca0P{<$jw z0kk_qVn4cKY4{G8j+E&`0_kMB>V3Ax!{Y{Nk7Z_x_ffJa54&}A$lm-!s2pCSa&qgF zYbFhblMy3@&P^BD&MP1I;-jlGV{-fy-`&Xz?!FMp&|xyyeIcA*H3v&AfP`RaeJO}F zgyeO-kBijl>(OVB6i-B~hr?ReP#TCT&TiO-l9j|PkJKglT81mU&|B2 zcnL*)J#ZeGq4l4Hi9L3)8b~;pC)iq2l9xaKVY)p4xn9p{SQWe@z(h+s>!8(_Gyc?8 z%5!RtV}!P7g|ZQUGCogg*?F(UVY^j;Evj2NdE-P@MlJQT(>#IXekoJkPe3dp1AVAy z=vu5aQ?vKVOOHd(1x{RicEd8iimpWV$b=O{g%exH+x@lYD2=mzhT4)Ma%8S+rsT%m zWj*SMeUWqxKK+8T-xtrgBn*!rjvRlm zSVhCBjs=xy5i2GdVBL%6(roS%sudKmPYf57S5iucZ8w}cAKqLqJtD}}DQZUW8CKDr zJ9n=6jURx@EUnyxqL1I8(Klq+=-Fy{!z^VI&f0i+#%WWY0X;job z6S;Zc{gGE}N*cgB!h-O#b()g1q}2Wv87a~}5+-soPCo|}>mnj+&375L<_ObYx%Izt z?a~9TE}Z_(rF6BU0Qc8ZPPDsdER&S3LP2$^Ygc>*k!4{nSX*!XL|g;QX7uUh^YN-4 z*gFJd90Expxb{xJ5b<-ut1Pw~ifD4E2+7ErVCwXTOh>#8ODR6he*neOQaxG4SB?Url$Xs-QBe z`9qVA>hWB`5#=sE_HRwD>r|TAD$__An^T5zbA^6=Lx}o$1Y-y>&6S!0{s&*8!9V!6 zY0Pcl%JY$DX)t9OqE6AD3QXwBxwq;jljhoCsd%?MQC{+qz{cQh> z@mY0?7EV~WaT;yE*!WP&a_|@9LrwGgb-{Akg;omsgaD6QuWdTGbN7!6E0gJCopE z%{D8Xpj5m#Rz!1-POigub1;q;)2VM7`K~Pc)?m$63ZQ)_biHYo*4x+LvSPV(8W5T{ zMNPLUs(|8dCh=^{i2Pm{)1i^671(p>jN{RLyG?haD#Fquty*mje(qXV9_)z2aFJu`4ge;ULt*vAyv;{o3DIR=@`}V*|BQPNJWTcSY zvz8QZ{4F8tM~-gMO;DjGFqz23J~5Oh*x4@MHOhfF5*?5W%qB&Czu>gzKvi?4q;g4V zT6g0)&&@MJmT?7X_uD|){CrORqq9ZT>X%FI+mny;x6xwrJ+BxeJun;09KI{AtwP|U z{MlDK1*j3wfJX6A-@V1=od>`shEa(pyz2>0!I6+^5wtfFj||AsDPo5&LTtUxPNZ*Gd<~1(NIK~b>5KLE^$lTY6P^^^V)lN?g@4wBAz0`(|ZTXoU zCfK1lnz3TbS86`B+1Z4%RStxVA$Oyg=;n}+SD8hpQkP9W z`xDq%9-bI-*q0y+mb7hrA^cl5{qF~Vm72$v@m z=EU!%tP1K?@+&_?V&6L=8p6HwG{2K>wBE##C|SI2G5bQe;ARLbD;wo0M(bdb(ynTB zicrjF8>gijzjmBDJ{e!DGeUPGhusp63?pZxD-Pc2|2%7-J7Hm0ltCoHN8H~3W=u~f zQB`dbksZMPv$L*?SM6n5NW`97kjrdpgN5SK`*|K!zBR^?lK!>+lx~H(0YY3{++u8d zTC9+_yuRKQhMfZGq`RdAvB`Z-n#+x_t~HD{6S znlO6RZ2`dFI&gdQ+cB^$fPEO1X^|`Ug#sgJ9v!TO<;)9s5TNi;3`=hLKU6pO{{9=Fm(y!miPLhQJTFo6&VJQrec!A>d>5#ZM z+6V1%-|o0Tb*tE~q2D^fhLn)de%d1xqGnVeo(RU4T}ICV8&D7C2})|};8PcF=xZ8m zm9BH+49FoN*b07{OV3VUdQ?|eXO&ItYwHmb5@MiPtyfaejec)U z7yghNOV-mrl${9xU#Kxafv4;$^;O{6$5`R#C@Cr3kpTquKYO#~r~g_j z@Y=Ek+L2vc;SN5y+jeRH{T4sL@`t{T`#=R}-N}ieR0Ier<@k!fr_#-iTerB?oKXAy zU2IE?MIjgh25b@%^uUCz-yP6oEm@|!{9rkHT9^kodw1CC_4d{JjcarRSJU7yF{PY^ zjF{sc8NWjWv>6dtU68x^7i^b~@2bpEzsy!&Ur$IxblueA^b4?5{^!L|F7H2VPdo|P zTYfjUMKR$?u(CHn2*DuG5w-(Oj$XWaUrHt6lAkH`AD;lqRhVX8PvrvM1{5ujy8P_D zvhuyD5G;Ly^qa!Qp9r;+BbX$=L!s5v@zWj4r{&MSC8P#Bfj93?1q;HRAH;YIZqbXk zv+havfHCJXiB2*8q$@cCrdw$JXCDdpliuu9!D^aJ-nLV`rYlZHMW!l{oFJkev{_zH zriG%*dC7Zim~jx3KJ}@3h=zf|u}#^4>Nj^5a1`bbfA`v2J*2O9!viUA(l6ZCDTYxeHRtmgKWD`VKvrkVhT5Q#sc)^CU|1InzAa;T*=Jo#o+_acmf&VyOXYpbO((v5#n)M5u$HTlN-=arUb*Qu|)TRQ)a>n84g z3RZ{{n#K(2wgWLl0j~iWXdRPxavEsuajt=(FO5H1#6}lWMZaKYb|HbzDW5;tMWe_t zO%|K&YtMoh!Qq}W6tjDOPt8Pp5p$Uh)o^!D)k4P5x-6*>8t)SXc^|U3#MHL{thP6asaVR zt*PI1rG%FM6uTN2^jw5T8#Cd_A5Ja9xxTTO8v%EwR6_e&iDYw!qmMmrlG&@Mv$A(G_zy5HJmaQkV($F+ zDLXp9^)NeU?(lUCa1{%R;dzx_4|vi*uHpyN^D|(}`q!@qyam>}lw@E`Tw41zE2}*d zE@yBL(J17ioYK4 z;W8DRiUn>2XVuX9?$aA(&~aq=VtlI)opmQY!6H%aQ}mMAy>^Ll1OV{}z~lBOx1fQ4}=e!D$4maMB_ z`I!#Gzr*(--lvROUBqrY3{(96L!$sSKKAZT4*jcC_9Y>_3^UJCqf(4%SXR?mTJl7# z9|VAvARDEBvMy=oS!i7e1rq1fk?)EZAdckEK=H3X>oRa0c@vYYhcG{>R(ldE+%wyf z#zx!%P0BG%WPQYVF1~hPZ@hfwmzW-9jEhlU(jDwAn+C=Fe(-l`rj>Go z2bJ?S|0F?G=H)^Mhi&`i5zZ(XKE<$IoFd=&$0!Mz>Flh5V*0*|CcUVsuT>i_+}-Nt zIo-VIG)1_%Wpqo;EjJ5gzU@-N$nq_&#SOiU`z40=>4i2e@xTh_RowjmS-5#&nhMp6VsD%G zW>Ib~P1r?Pn}}PoWgnCV;Hdt_uj*H8-B*m4pOmR4OVHIPPXDpmUG8P|g`TmDrvP3F zp@mRjPUu7i62?hS&6csNQo>6Jc3uR6@wk(#G2*HlWw{oPe%Na|2|QO_cZ^uGU}Tmw zA`Eu_`@wd+>cX(fZb2q<3D2&diMpTQBqO0`ycvV@>sBFry9uI*fX>-j2SCm$sJZq| zgG+w7PHQczu}8z6EY+EpJB8F7z^Yt57!*Dtxz+x+U+)Byg-BP1_)^%KvOh+jrK(oz z@N?XrR;R!=;;`qO9gav|+1N4nE)xkTm(nx90-$}*m%IEFBc^Ms$I`>&iPe73}2 z=sQ@JR#tr_!MJm{tjep!hy~x6r0;}sa zf9Bi@zkS6MDw7p=l{&=m!hYbQ8{fu6HI#eZV-8{7O3y7~Bpx&FSDedp3>CztQ;s%b%cr?b(*SSwginoo7g~Mb(HIYD}ur%#c(B?Oi%Y zbb&Y4MQtnEu1DX^qThfML(ySGkpL@>x&vqD?FTe>cGyNdq;tJO`vrQN+z)w|8AWV{ z9>wmF@;6+D$hYa|g$m@ITTTzU9=%$sd8%+zJMBnvi9vHWBb>gjddZ|k4Vk^ z!nR+^n$d^VVhG`$4@TdpgwN}hEq!9JBX15p@=^@kJslive~H3=z>&kO69k?S&+*l) zY;6i`KlZ3zx26%)cq%IKmPw|oE*O=6F^5PAqH+=xb?;b-ac72wYiIRrZT?1ppqKDs2~yv=#LrigVmEN{X}N?+mo z6jd}HiuF`Pl;cD7hm-KVH|uU;eMl~=eww|a+=Y_c=& z2LUnCI+5P#(G%bjH&r=YNv~K0g_R~}l#|kQ8p)Qv*J-~SldEsio#jJLMAQs~q>b{N zN2z4T>J|&)LA!6ZPG-DM-b zN2pF$i4Qqk_WYo7$r(L((r1^v!6#hr^>|PuGW*Dj`8kS@w!UiR1lh83SxU3Geth?Z zLZ>Ze@2y7Cp5PutGSPVP_SzY4xg6JIm5~nJ5~USm1qZ)_j~U@#PPZ}eNOrj%0i!PD zQSfTWud^^I^oeYM_s;Srl3cdK6Lr$&3i+~)1S0g2iXNSlhgY8Dp6P!5qm5;--EA9f zX@_GiCFNiUvtPdkl+KE$@FQM2WOzI~wq;NbmsdL#)=Am+xR=qi@!KZ14mq18bW9nX zoXJ~SOVeewzl!_g9{SO8_J>HyYk5Hx40NuyorOA+UOgU>eegL+{COG+B^^;pw(6wJ z<<+X8+LWXaER_3QzKarH+>sp%uA@}RpA{4o&It)!u>$;!hx>*|)_!-rSy|@Lxa#T1 z=HQti9=jeF8f?GwQMXRc>^q?8i!c!fNB-D^@r;>2W0JJ|S)Y&2tuF;1w@^MLBy)Ld zl<(i}IsUWzQk7sN`;y4Ax%d{6dp-p+EWg!9h!_3;R4u=X&+jt+o;_qQ6DA=%F4Mh* zRX4xCAF{Z&z$dj4J(;ET>vwL6W2aoo`|}pV8!Z~@4+GU1iw(AahP=N&g3sqcnT$`n zt^Cj5_xE3Hdj>QZ(a_@E|DvV_JOEWPMOpnK`@jCus8w8E{c?ZEa7@B{$IJj@Ox5SD zI3lFw&iGF*h=PHsE7_m1eP@@Ud;9N)*-yc2%7(FvO9)21&lRB4lR&{v0|q7m8al7j zuQwCHe@f|(7eI-{Czyc6n*weM*XaHLyzgx$D^zfCFYY_Hp2mBdTpd<@VBk^ z5mrfHs^10~ew8FC=!VjQykwt538VRpm|K)k4` zS*oND>Wis4)$6R1qdT|3yL08$uI^P?SuEJ!_yn@?i8)Y_Pb=xlz3`a?@M1$C9tpqq zwmn8~q(=MgEsAQ3Vm6>W9odEL>MdZUH`w{bchpjW!o6gtJ_Qj1%o8TUxfzq+khD|# zeJNb;>*n0i{k=|Hn^#PulWZ-^4Q&Vfc9X{Y{7$7@PP^?o%Dc7_hKpM#I}If%6HkFq<_Rzxf!>vwRl7>(`7K*_h4`{bFYJA8ERwGU5)dAauU&y2cnUh;chD>@??52ysx+s0XOLb3i`hMJ)|g7`&tg&&7L9#rteEcr5(T-sB@~}}j z0un|)^y26XpUnjw!3^L5FflLp?@u|RxHQ>gbwq`G-NsyK&{b=y?I}_W)XO(xd2N2G zb25oo)24W##lcgK!=aia3sN(p#06Q09nGWH-#b!hLQu26db8?qcRnp%Y~%neWZ@O! z9iPQBpu1oo?5*F?A+3NhE(U?KDm?QaK4^SQ&d?zOJ`%>t$MDqCJl1ARHNL|mTroH2 z^R*%S*RQT zSCfEiFM)gZydWefd(BBz>izw1mIX_Wrg&9vb4!$Zk*Y9TM}0-V^^Q#DT*;sU*U!0x z88ndL1S%hr8+e2pMbzuw6kMMa*DJMVkDpl(S}~O(o}~894k*>Th*@>B`3hnvorFc0 zFwr!kwjSF`d-m^%op!tZ?Zv zhgkEfYTQG;z6v^a$Kc)62B{EN;+gkWCt8-Sr)AKA@o9bq_FoOYHnr|QKmKy|i9L20 z4GlXqbz6Dk+|8{@k9&Q55tiY;(b*c&&J6g)cx_+A=2Ok>u)m~L-bko3aCsAnT<6q5 z)a%4mHXrH^YYh3t%7V$wAe2w5RrQ^c8J%S#7p*2|=2^8Dw#50=@3?RU3w-SAhhn_w zc$o)fdz^@Osq2PpZ{MZ{=e>E6K@65M#>ya;2Q^&u;i4g)5&=%+XrG?qY6yQdpYors zbeWIIBH!8-s-GyhA2cK5&MNnW^8nuH(WKj`mN$5&! z`;X+gXL~2HYm{ty8GUClU+qCi+t5&QM?||En%I$tbG3fI){Y!#w;#&`YcgLwu zxB>yP3_DDXVUt^i4lk+ty@&Rt)8iZ=rV^D!5$JNhl$jkZy(Po(9c2y|ATOIgC3}4y z;*g0P%2U5+y5;LQ z)D#H_br!3meTJozd$jo*3y<1kJH1>JRwbt1YgU@xX-}!7FyT;EOn$`cwb+V?2~YIWYs$WDPLLDZs?g+jkzuL2 zTWH*@oXoxgf1+arD*SB{-k9!(i;nYqHGtprMb(;MLn#+yE%efX&iA>;s`7wQqV0qK zT6`!GXgbatTW}vp^wuTAuu0~yhV1i{*c{m*boez{P}{A;ssNvs&sLx?xQWi?=@<5S?!{+QuuKQ1VXvbi2pC z_5J9&hjtv}9LRr!oy~hwo2nf(UdJj=%>5*WSnGu95g}Bv!${9xS#uXjz%&d|qB$&$UKqCMkBJXZr!L(h$`+K8i)$G5?O zJgi#^LJ zL$zL{LU2o~Men0c?2h&&lQxMZA#s#TiR}HMYM)He{hU6vixVRncBK(cN7X7l#{l!z ziGZA=r9^tuZ1H~x`?}g|{t31c*QaW%EMEgZ5%=C_^5}b1Z}Bf@Un&Mv{R09pxQYzN zc{ql##im9;H(c%*8`ljG*-w=HH<9Ma|CjHOu1cB!^YwvWQKUEs+Z!<5o^_!}6LmjM z?k&4uQ0ISO;=jSMtvD!1b`{!rME_Ppe!a473BczyhmVA$|4bRb=6cL%uNMJBfgbv$ zRm1NG#(*73+|E>)NQ{pP1J4PXoaWV%B|>0bL*&j4YRpgd-jF>xb89}auj-#Ca2*FU z1&rxkK)!XRh>APvH3xQkA~apfvS4%y?Ee#^)!2w>6k z5dD~4;ZXu6irNXR$A?H4<{JK@(HB z%CFDej&L7ghCS1MbUJ^-i(!MI>{E7+Ssv})LInxG$4_T(5m#2U?I0;2uuo4kQl}o% z$y9zBzN}nsKZ*0v)$g=k*`n-Tr-23p9K9tMmGWmA@)W68ZsG{7F$4a`P-uD3?#d=D zJuVyz2F!HWan7C(2rq4C8_XVIrm)nr2BS7`$p8cgSoY}-Y+!fE6OlREchc-K1u2G3 zugq3hPGFBo#uovNrpm6jZ{L2svM^NCqUAJ}4Gw)TNcTc(01uqAHmhRzl93@KG#|fc zE|+59vkTErZj86SK+STLjx((Xks>E~f(G{nU`$+>7g+wo&b-RNTYlEp#{%vRbCJl& zCT#SsvI~dU(XzP-cQne?X@^T~pAt{oDY27hlw+)S_db~y+l|m0MeGvB3z{{9 z7lMM3ae;mhumFs)UpA^t2AG{^R}qg$y{Q~lR@_ULuzK_L2tYk_d8u(8z91QK4V)^2 zTyZt9z$Qy09sk3F&w-G$rd<^8`2q>=bfw6^23vqxh0sij*jp&dU=;3zl?qp39Vclt zm?{`-HVW=HMnMe`D?h`TkywY8621$hyw^y8=Lz~vwjAjRMv$SE%(zp+A#tPAQMIjT- z#uuc0rH(3byED}yp|pT*Q4H^nWhhs)=3R*08ii9B!Maz$Ct!?;2W#0-y(b`gm-u=~ zrO#3mLR5g<3$EJ^7juD^{V^Ct&H|)W3>|}&9lg1F13zf^3`cdw%)dZ$z$2(yIe(*! zTu2*c=2!teGcQu=1rH5#5VJ-)UPtrTwb-RDCTrp9Gtx>pXQ^C1a~|XqR_Tmr7=}eE zJ(t6K(R+yZ=K6kSe1m#@!F~pjM`P)EO;qv>3L}CvY(N&?U}nO#RO?y^+<|)Z$KyN8 z`)&)W_N>BOP2VAvTG99V+H=;ti>i^(@~hnfi*rbb*X*h{Vkqkj@R%sgnAn}j;j9@8 zzkt~`PzW|0rMXM#qp>x>p0j01wtRG5)WsxlX2J3(P?V{a;b| zymiqBZhfALnRSQVH~HvZ4U6~nWU5KBP&HX}qq*$K%g2H`y?qbM$&-dX8LD`29A3>9 zwlJSi>98<7gu{0DqIUI!%YXsWcN+|Cn5r4WNCQ1+k}jlohgMrEo{I%R(`~Wo;LdE; zPnFy6QIoMbL;Ah|&4`O?40-Z~R=n*JFXmYu%GRwNEgbSYhHLz0g1p0I?XU4`=Poh>IH(@ev5wxW{-@b%*ybVIiZ~%rIJhy!s!}EUtU=8 zV!N3#B0li$PTK<01k^HJe@$0;T9?aOuf?{ss#?=LBg#g&6KppkGpj-dwYq60WdPXe z>JK|5mxPAhEx%cuIRbE2!Puwq3&Tpg$4sW|V$>nA@FEYW8Eu02hVlTn5(!SijFO^a z!lpPM1DLbx@kk}r&`qd*EaGWW{U-$hs_XBs*Zjr?`^mE3-+K9_hBx#5{$!3Qv5D{I zGW!yCZ7qb`Wq3!)Rc59Yb7Qb%nQ}WeZom}E!zwy&D2bamog)M?12p6Vl z)_JH@q+WJ(Apnpyz1;#v2FKx!yx;{(#yWf#K)p{CZ1P&4z5i$yp_$ZRn=0)i8<3*( zYNg2h#Fm$)*o>hqJ}>_AtRQhIY3B!Ymp&G#&I^$lGu&#E9&oalk9{opoUVyr&Q@%3 z4zd0RCms~?$Q;~Y=paC z2W^}Zeksd~EI-WMysnE#|8Qb-PySzgE3@_Jc(%mfnYcB+(BB;is^ka{csDsbQxlGU zh)HGdc4Y~7>xI|7I-6|gl~cXei?{uOum-6o{{6>)|NF84AV8mm5OcAA z|M5TnPT;gl`VTp*-w~jFIYIrH%l!4g*F=D8c@cgC@3#^Am#FevTA85$vw@RX4$Xgg zSolFO;48ij{PRe^zcHBqw09x|(NsLCFZ6dZ<_%%M>@01Pn8&HiuB0p0*6(vVFrrYb z2MHw$%hHWX-5;Jm^>bCG_t*mj%{uRaAqB!KukB7!fX8F~v`OgGr}cn=9KZ~4Y1LZp z!GkwkCaFNe{{kBgo|Yaj5*{BvlhIi(MuW!DSHkRL6K?bgAR=n)vIAUj#cqn zD^ncH;{}vy+|3_yM_d}7_0@8G{-ne4Iq=JV7h!v<3=8bzTO`}^0}3vTNwOamya9cv z_o1u^MnWQtT}6IP|HA_!0A&GS=75++>8CgWlT$p3O-)UcaNH`w?Or(^#MFS$Q50)%MV}xdP}kWt4O!h5kXLuxQ5$W^uR}m`#qo=Dq-efHswhbHGHIFr+xZMvW?W z2TfZ@C7P~a%>OeU-EXenEjFj57qv~wVv;((l4>#4NJbM$%{<2+IZ_kXv?Jy5kP}T> zOU{9MrmrUWZQeeLWdE67yG{JkvR`ljHO0=#%Uf@qY+7?PkV{Z%Jr)6O&E_APFI2Di z90gq6HvO_iyEAz&Hm&osSzFBM5RwaoXjR(xg1_S>=ZhvBs5mNj7yGA#wQEb6=c^9J z36OErw;t6&CMUc(PIn48^Prhwk$r$Q7-CdeTDSq#mD&QWHH9woT2+7#fy)f0?1t^f zffIhU*5?Z0maU!GD^!$1My;ijlHk61T}7g!)ut69AN~18cB_M1Ko(h_sS4k~3<_{} z@1Px=!7#BdwBqi|XUAcyFJ?ENVq-PHffq7nos0uw7EJdVVfrCMIo-WWYg@S}f^jjQ zaTu$(SC5B}&&v&-USe2L?lNuG8ikD^@bA}k@s+HDQjzCf$6XM5B}c8@{ZE; z20XAJTit$l_hkHK!|cAp*%xYs;3(dnZu$HqJp5`4FW*^SY3Afq&xZE> z)@L=+@7N9&oCD*4w)5g}AK}~gN=3HB*-$743yz*mHa=#9fa3AQ1sqF|O(D0+80P-> zv!}QUsOIwdyvi{41bS<<4*AKG&48hw0g^{zC>-`#`0_t4D|CGIco@@RGzE*?uVH2aooqq5)*w^FiP}0V2t8ojX zdNR5i{C)FT!3~Wm!oXkm!F$23<|O_s^l3yrWOdRNOTJ`jRj|qhUOm;pC4D%Y95m!R z@pFqFk5 za&1F=sZKd0u$W9FC27-!Y0C?(|5W&OyO|%AZ>9QU%^A1Sdy>AqRklF43&FjL$jPBH7V*>Quk(nBX1Mx`am9F80p#D0(rUI<=4>r@!#<+!(uQXA%+O!=mN* zn2iT&Y}1PAoA_Eeq58)M4&GwhHgIO~zd!Uz7Svl|fEFhEgx5|iyBH0VUfA+{H*wE{ zF}<|wm6@_UA2glXyH0idNZu=7Y>3F*wH_dzf8QoGPO8n2UWMkf-G!vx1i zC!mS`yfClY##oQJLmkfv%%H0C;7W@tobH#q^v}9O#Y4fPW3o?!)hV=E-HXQE@3alC6sSyY?XojawzYpG|H#?d2T(?VQ-oLv`f zrn*&fafRC*aM>66Ay`=(9%$U1W_CbH+ipp0#`_e>SUu}HSc5rIh<)pNcwfKUc=qSa zM#TJRgsxje6Y&py*?V-l&!a)ViF-GKNGRz^8p9{8?A4Qf@Rq|Rg~%{NneKL$IyT(11!qRA;}aY#C+FP5_r4kd-=?01I&{p8 zNp30EAn6pLE00ZL-|UYbGq~m=tx1^Sf3wE{?PQkLoapm`+|J~!;>b>gu@v!F#EEK^ z#NaL}l)REB;~wxL?Wkzg3G1|n*n6gN2#*hx@c9p@WRE;Tz{WvNz0&s{Go!Ol@<9;HI7#(6ej#bi^^VrDBVj+P?xA+UIKk5YoBl?* z4gStGto#4Pfj}VcBwaDl&abXzp9W8q8d6>T(UC6&eE{JbieqONj|K_UU+WDx-Flui zYo5Mya!4WL;ExwTHFeyo@X1Xj_lM=qF{J~6%$Elb=X%U2sHva4*ZFY%)C_`JEt;Ax z-o9Pi+}xPs{!`+)a|%RXgGY%gJH;eleZARnS$MfqmdegDCzk@^G}Rmn*vb3^!jBX>i;qloQ41Qw-x2jPaH$WNKEeD zgipTlzd1#E7w&a>PWR~j>WqWJOm^A)-edH9d~23gI@|Zf2MF*{GnEsk{+X73KY{W- zOs=|520Nkl_c!(TxPy5DU6{vp%9sBieopq;DcJJcQp!|$t5`*t9Y^#A5=a|pQ($hoWRXkYnx~cVt?DA02P(1==7+DZ6-Yq1m;8niZ}#l=5!yy}B zx!u~ed~4vyiAa7zb&pc`r^sb(sLpbjS^laP4 z!q`Nw$>Cqqmkd0LP`p?p$vbQMFDAYhX4?Ol70@rY$L1Mv{uE(QY4FeuJsgyo>O(0| zSonWxd-HIp_xFFilaA^Lr#fXfl~9LFvTs8vLa3CT!G!Evlx0YY%2t$}Az8{Y_H`^Z zF=;T?F^qkg!5D+Vm>J9O)mi#}-lxBR*EN^xb(!V4-`n$kJnlz(=-1|S3}Rl>`}qeY z5_VOY?`U{I)`C+O#%QZu{10ClL~Q!~K9x{XTbuZynD6X$l+8?^P4_2Bi8~ds{m$Jf zp=Ko(ZX|Tj7?eu>NERHp@COs9_7?Nq`S^~JkRPhC2O`bi*;YGfeR*8pZ&JRqI|COX z^Tb-PPMomII0nFaeD^!7xB;8aubK(4xuypx`mN1&*af;y4@)X67|~aO5dL3flLME6 z0Ssx)pMN_b-*bV!m;N@v+4#YMs}q2~^$-w~l@|nz+vAY$Xj8w~#4FX@e-vlp?CtH( z-F|-v2!=aE*DYIH0}@#pfF@A&E04;!-z)+yB%Q?y*kuU$>R09bhOItTiL>tITae6$k0^!?jCGek~4R z@HJWoib}x`JDOR0#P2eF8mGvbReD4Zx7ux%k=G0BSI7H~HplV%^6|>khqSf1 z_kjAxp+fTaZ~B5afly+is{GKz&hkTGBr=s0WXpJ3TH3Kp=W!n>3#hsd1DIg+*LJrs znj^raPoibUr%=E}PQZQxAW$?SP4OJQ^>j2C!feG-&c2J zr!Y6J0thsWT3T8j;a1;_!V-JuX*ER8F>y6&Ria_a#T;V(XIOToq)(VCWZS&XJ7)^b z6Qb*~=SoYMb{P>80%A z5|7yGQd^If<{23^(!5xrvJ8;R#^p>@8xMF2R1CwsS7GCan(rM1l_3qoW<2rgD3uO$ zs;@j53SmeKX?j{$?13}s7LBVUVvxeTe?(u{v(^(F+z~A3( zO|F_bvc?5|BdWgDII+_`&S+)`Oy92qELV3RY-{AZnuAp&x+lt0l_5A9;2GBfA84up zTxuc!fT02v&J9HcqYS>v_Ot>Rp@jedmnwuO0;t=@qf_WykJ>Rjgr15!O9y$k{?Z`` zFnj6y_HDjYm7h#`2*hqWLK`I&fIJoupm02@2Tc_{N9&fAA$D5*aR~T;pIxTS!?Cwc zZO1S%1~i{*t$E3|X(8vHR5AhC?%n415#UX-OFVnisKv|^T;Ci1e$TkEw>F>q9}TPJ zwLeyybJ)IL7f8&m&$RLHdo%m12;>WApH`wDd91}yMtqO(Vb4A+aLr5c>lhfdvE?(y zeM$8FoUX4|`9{X;tP1o!Hhm^cuN#GQgF5$5Y;hJL!6IJlku1skv>FPfIH&wmR^~>C z?~5HHlYpwj?r-qO+SQqM39Ow)r<}vp50`m|bQ4;__??+%)uoHg>tnP*%KcN|-S)su zI>qz4%(E8yGP`Cz_&F$W_VsKGSmrn;Z>f2;U0}WHwSSU8m&QRErVdAJ{s|6H)ntM% z&-M{kxZLt62Siw_KOUhFgK9dX>G6~@*~v_G&Puh`Sm})qtzv7xtYYbJZ~eY+=IL>x z>yRU#qR!L_PBpWa`-eC5AAi&VW=-qZ^}XbWcJ9fD(Dm*1geLG_OTtiP(YKg5q5k_I zf?M&qd_k! zy@=?O0HU;tdi(ny3ffC9tKcJ*Ha)*RC(@wdx~JFH z0y4_Itord9U6cZMO{m`ojt)t|=ob(ksiz!xHJ!YAgmngz7^WO??LbFxffb(2O@8{meVrIGO2&0PI1WTJ2wQjtG&h;$B=Zs z$=Tc=&@88Iy}tz=9q~iTM^9=Wj~AZxjOmqsP{<8Z>>R-t>m})$Ji|^42?-@&NA@-c z`c2IycRfZU;@DB3psn6}S=XYI31MT~Zfa{i5e-5m#WQMaWf9a~OjenhZK_u=bv3^j zNUTgI?_tNi%B?&b<(S^T7>cBYS$oFo90KWA)glcOM@B!)V8q9@Y>s97>i0Uw&~)g&np+MqC29hp55=+ zH?zBn$K%gFmCTv>uv&LS!z)`46NLH$#K6tm_P6#$R1XnQK$UMJ88wXd>P7Du0+;5w z)+YMbPlEzpAu~eUpi37c{ehtGgvN!^Gp*$_ANO4+$^N3aDElg+$zk&2{*}qp2eUg1 z#$gpeJs9QsAx*tL;KpUY)unJ>7TVXB{njP)U>}mGcao#{jC0@XA*5Yz3Qf&ls&R8w zd~A1qQimKG<6SDoba*TF4o5fz%!|U@Up2W7y$=!b zF@?{}mj`s87W3G7$Eijs?X$@Gdd#uD=N!Vv+W=V^ur;@r{h_Od{N8>ubK*jo3VjCC zhzU=mdR)j17!$z}LCHL|@h!+Uh#D*-(}yyBCHN6z{dTSfjCHQ@jAN|#J6@3?hkjKn zYWk2&8S^-1gc%iE1750aZ(j8diMMZZKU$cg1gJ& z2L%&NAinQxc5)F!vzGPxSzFpIvD%8%@;-Kd4>*F4K@ICQfba0z?aN~>P3Bhd>4LI8|1}^!x;Ju-j*f|)7 z;aI(MroA&FxS1NZC9C(XnZ4wQV13a&2EXc8+2q_V8!)YFY|uRd^_?)=^F}yHk~iRgFgZG#P+fr9>VA2m797k zBD$dbJBU_q=T|;!JM-htqy3vN1w&)4Zx8r;sf*f1(G)PPvOCj!E!UUP-?J1GLxe#G zvpnMiFRr|20le{q7y-FsLdg>|S$;=Gy>{t{y-}Hl`7`JUfJPMo-yDvlIbd27Cwy>f zqVJ+KS|~QO3Imz?v-Rt_rX@aPc@<}JXZ?$4CPAA}qVr)1ZpdXLs3<3Xl@w(^V0iE$+A2quXj zhAS?EF+`ocCj6z`JZM!_k?;bz#E7KC;P4_#M<{-;U}R_n4lb_U2@r7I;vC$pQEZ%U z4~!&pgiTV_2;np3JGaMi%b9Lrmadywxe~;w3wgM^BWBgZbG$Xg77>lUcFEe*l3Jkp z2l4IR&^?5j>l?!xyI^ZCIp+%%SW#O?S|IssItn$GCdpgtQ&O}PW5q`jRrZ9cg|*Ml z*2y%`9cP9br%kc7G}-n5L8Spp9eKhYYUShD#?_$QkfreB?io|zirVhWuu5vdWs}gp z7;4EbO^8+hsVYc*5gJIoE(O15SL6Q4SB;Ui4)<=Bej!IDgDNwpmPToa;6bC2BC_oj z)Wkum{28V`sf|kmBKNC>(A(~7KUSb9K0XUfT=sxIv%N@AkM491uHVE9nNN5 zcBHCh!2HU64y&ZwAZNCEVy2xXP!EKh6MW(yjX2H}qTdSD?a$2!ukM+30I5@Gl$~AF zvR~hW&R7k5+qf!!e&pLPC-!fZ6$^_hjX#2|{lT`RUZw-4rn~Tde}8|FyxjI$GcY3wlgdA_*=--IdPn&qc}&B6g;B z$yAdenVPm(!+_B&ZI6N-iQ(`WXeGjijmiw5VmEJKeh(fJwX*0RI2`cEAam#8G}Mls zmcEqewNQoF^{l^8v9URzd6Mu@lv-vIF9>YK;tCTad|ZZ!6$~C5SnbFo$8K$m~6k%4l6*16P-?IbU8GHaqp!^Wa% zUf`1R@SxlLkIWn_ciz}U5=K*_mtMc6EaBoWln2IYe{2?+Oj&>>@H+Gq&P1dX?U@Iu z%A9rIT7`&#h5hk%=*1!8C^Jt-WOayCGc2X}HUFB-9xo-(RK!q~v%8cWd%0`teLi}( zcd$?_tlPk?q^Uf|^<Kmaxpnr{mH2!p^yIuocy%*@%>{8u)UZ5jiaz zmDuxctMnJ)@Gp=(dAMf$mYZrpT}#M@AxQP`Sy`-gTlm?1e^^T}f9~Bfdwl)Us+sP$I78L#zl;sL+CLv6te^TT)y(MC);{`&te} z&(vsHZJV`ElCklE_*e2I16!&KMEgFw#r_R^>D6J9sJn3fdPOiIdKmyTZLz{2td};- zbE2mdz81ru+4!(g+}$fD(gws=HQEIHM`*CepX%f;O+J*!%YX z#A)Y2`(0Z06)?+-ic=>1d)1*Pa`02*m01tH_a$*&=t3wtyKYAW$5J*7a*V(1Bs^5F zA8_h+G0eIelh4IerjG`%ySw=ZM|Ihl0@P2w-tm$$1oMXMF&$$eFEhiU+RZqg;4aSL z2GdG~N)pi{QF6FE*c}#3v&T1l?D9l8W(`{4EW|te?{92QCFT>N#y(?51UorPYUd2F zjb}Gf`OJm|{H#iHbDbwVN3LcnSM*B6%P4HvyPH%+)kC*eAAhVQ*NP`M&a6Em2sdBO z<~Eb$d=Wla8^9myio8?47FR{R?{F- zd;SZC%@B0PEGx*UsJ&F5HM<1yUNKL1a-;USA!_AH(>*lP`dzrWon|CsE6fn-iPq!0 zbL?b-!G>YLT1-jsgYMf+X-5vWxabN6R!3(&LjNekkClp`#2Q>Me@I-&8wHdq1Oq5Wvgs~ew zA}<|coUuBfc=pw9&P_CHB#cu%*kVEIl240jsgu4?-P>74r9N*h%+RuQ`|s;`;BUIf zFB1oY#z6P$L!m?(OUn)4KiSrLYKV+^K#T5rO+hmXp^s=%O=(rmC*P#mUAKnBvc-G9 zoJLO5Y>-NBHuZl7_KZ$$vuB2ILoqecSV+5!B-ctNELw z7$nI**><17ciB+N&QjY3hV(}C-P5SsQ^y`zvqD#W5*xuUqCgRWp-!XYEA!JvM4!bv zPX;l-t0J;SVXRi+!NH7US$8K&DZY>L?~OI?j#QjbENU9(8F9Op0Qo9NC5Q;R4^M9~ z6#b0!juvu<6Yh#sr>ZDoVc@r+r9Q^2Xf9%dkS`)y0zUlFze7o>6(@-32dOsWwzDQ6 z_sL;14vkE_S`Zu=5LOKB5`6STP4scWzxk)>zyGos{Du%z7_3I?`PR{uUbMKSweYr& z=Rn!Y;)0P<=ekz^I(N~xl`?w_qiDu=fv>T9O>4T3fzla+ii%hT*klePpw=+2%$jOA zd8-^xQ2t7iajR|UMSH|cCXFn4U`FmrQty{gozOyEyR3oVti1g3Beu?LP))93hRQ@J zb3jmSXXE&iTB2&FAf?N+qz0)z>Vy$?j$~p*=w?k$xsij!=j}o4X<|(^UvdqxCsH+C z)$@6EDYZ&!udLOyc6!N^30t(XbjQs}d1U%qMsZip@Cw++Yu24&X207Wb~Onn3T%Di z3Z3;fmgbZRZ*ke0T;{#^icg4ltn%xoa&ud$s!Ood*ex&gqS{ioS|4s-d-q2WBYzxG zx-#xRj$Iz2Rt2y>p^+oMM#WSY8S%rY8~%6#-f3c+s*jMcIpAu1s=lYNw_DvsA6aje zTvFANYT;(%xF@roCVg>t1veM4UR9D{m9RVW)q`3Q3@wjxZgTa?vJN`735B{=|BA&6 zI@I0$bx$JK2^P~x3vO-R87rcGMuzq#ApQNFvtGvj;wa44O}t_FWq)ws8Zo zzDiOz(|6?pD+2Q9g+~8e>9bO`EP3a5$}gPGN!_81(xk%}INPlH-HWKMa{I8L%T~T0d~I`WyGJ50^1~Ee-kLeAZT0YF z{L!y7The3#PV*}gMux58qG1%8=p`zCp&!}%ScBx54Rt>M% zZv?E!hmx_o2yr?B>4@){fW2e@R^IR0GK%+L~}nhnb}i(S25US!8C)4Iie?e zALFb)c{@&A3k3#89UXoDsvoAnI|EzJE zmkhlK_4!)a9^i70Lm0!x&rT1YDYH1*V^-^7>Q%tw#3gal%#49_ij=!ow=Tf_o2_!S z)?tm1(~%Nm?BO~zh9B;7Y*rw5*)b`OpL5aVpx{`uXsXb;x;g}!V|A|6KBJF(Cy#za zO;9Ogqu4PwF1D$rsw*p_8Zc7`T$Q%fx=(aOcH3-XRUc${>`WAx-5D!{m9}WK{OR&F zS=ysE9b|FOY)ok)bcGnW+1PRc`SBKJ)Qv1%;RkY82+1f5o%{Gw(7&_)VqpdHskVpv zZEVI*l3*>!-f ze7@P`cq{e%qtFApM(@sJsJaM(SIF9vZn?#3*8!=Vjr8E<+GucNU+8uvW$8I=+!+WP zRz>ZSkFwW>njJ+%^1@7P)8vM_nSDdYg(jjxS*eKHR9tsOqGo7A)5fb@YKvz*P#{T| zW5Q}DTF6s>`*|jlNiVMUuZFXV!G!+343{X>&RD=0($i=yEN~`_xRh+WJiZyht1)WB zXhVkfLly2(|IGz3txkfVzFN`e#dxbHAS=OERgd%-*0=vbGTH4rZimx-QIfPPMs0Ed z8Dkf0UVF9SJCJ{h!A{w7#z(YUY!Ft;e^*}9xHvCD8G0yPTvSBcxmrW${1xs_SRHt% zexr0ccz~<4wm!ckv$EAQu)Ixm_tsM51WY)~3e_Gtu$9yQD0`Hf7hEOez=iLLYM&V( zE4mZh>YnBw3-5~Cw>usZYE&drMmdLmh@?x6tz1+Y&5bjdAPyy^O~?AIuxX98nIWHB zM&5}VB*;<3($YOv`y4lMsW^WxXMoXjb3krysm8hKA`#-dC=jsl3|bx6ZN%PAZgJ8T z_RWqJ)%e!DhenLV?!nV{wmxFHjUPel?!TCFn}Y0gm@HW(+XAr;pK^Qd7>i2Vvg(6N z>GNTs+sJ@jC7B8k)IZfjGcdu%XCs~(Q`u~%iCQD(jm9XfY78TZfgh)qcD8(Ai6J}x z>J*OGTDrOi1rKM5lTX4m4?ziXkv@3YA)=7YL`s*c7BgSHD*E$_re9X3lxqA%N~91X zqv{P#U8;)DIN@ldvs8o4-0M~vNWY~ZUB#kegjHOB0-!_WPdU&NGqE?@H>=PSP&fGe zXw3#b4;hqEW@u2+^eKYk(UYCEx4200NjAlq4>fm(dbj0mvRoPgEl1_M*|?lA zu)}W2ysrylTuyJX%ZU|{`__kF8h$%mF}LH_(gZbW_$T?`jkX6 z&ZkD#Zy)jiQB0aNWg_B5w8np7*A1zdW%2r;T-=B!yS~W9%m1?nvvG%uY0|V#NE$kM_YuMeWc| znL=HZ6R^N?LDFSX8{D&Nz1bCC$s-XHNTi7Vw!PcN4?i$XeQyB;5@p94gL*5K~#nshR4PF5cXl=Kp zl~u3}Ueu}|CmVEU!R>UD@xRk>esxU)VM=5;+MFO08P$uBN0F3s19cn<9?p0q0Wb@a8^9%E>vSlhOY)g13jqHNA&1*xyZ zIkOu%en+|3=NZI+3fL1jc7 zbK5en(;dknh4TSW07ssE?hX+HB<^t>Vpp(?(XLqAc8c2Wh}?%*TM zrg~pzonM%-tvje6Cf&ITSyqr}0v9hlY(%E}x1KMUT4&la>?X-vekKJsu-AmWyv;d4 zK!8OhYC`P+D#bu8NgHa(Lvl7M^z+b1=px?#bJ+j62Yr0#j=?^S+aoKoi*E|UyUjXv z!rGMc7?%q~7QZ^jRJ%Z0!Vp{{Xm*2j(*b%4Q7Q$tHIgx~hOWMkum9wmu0N0ynb2rl zIThbFNskD8dwp9gTfq4O>6wwHJJQc)t1k|;5yPB$28w8wsU+&A2UeX{K``|G2EzTn zIS7~EU*7zg+&(?7t6^{^2}n2mk}|Xqaf8mzkk(Kaon?Kp+;S+tsFXzZ>s$9;u0q`i zyO6fg`RnZ`1oiYg;MA-Wx-nqIlB&x02(=5mDiC0uG?nkqet>x>Zm#E^3|)>^-O2f4 zz2Z|QLxSmc%@X;3B41V_!l#7%w+Pu{oI-Bs zC_(+LttSXJ9WsE{Q6Ffu9`mo#?g-Rw`Bwz}=)&`(c6&#oKk-EeLks&ikEwcW-hH)h z(nl8eC(U+L%^cbZ6>Xo-H9WlcSODHzJhKljx8Q*+xP0oAVpRrLDAc&o`UU8TciFIx z^uR*I7u%I9Je=@1qaa3S2|146FYv{U{@-(*H+__mbe`rRj3j{oLz z|GWLQV)g|koLccEIwz?bLBiC1mkfmEw+BeerqP&D2!jq z5wo}M_eE~@{}xU9KKtRK`^p$M{KWv*RFUyL){F5j;I&wMWb<_gbCxI z$^}>!axP>}zx%Fd=G~Fv0d_6@+#aVi37f{7_*7FqbE%3vd_3?MD&A zcjR~>M_5f=A=ia@(;v=UVeKZ#t20|d=BhxKPF z7K*`A1DE0<`t5eP58okxU7&s2IkOg4z3!;j!Z-U??Ir$?F04&UQda}?h|pDSy#-j# zGOvXD6#;rEOIhhG)H+e|Y-H`KPNiPd1hJ?7JsP;2gUgKjjHntQJq4aIh|Or z)VNt!P~Bm7Q9~*5Y4uZzmE)M8_7sDTdS%dAXvRUs@s;9s;d=M4IWXIiH|wY4n09PF ziUXt_bz~!j8+4E~_~YdL^AK)%TnqO`@pDS;2h7=!5PQ$Xob@i1jg!hu2NcNE$LWTvX$Zm*2e9 zA|=0aHB6rJ__0J{!mH2iiTgCf5$GUN+j~Z!h?gg!5FPbNZvKt+@dWVfEnY|dT#>|a zzQr_BYtj9Lk$*~$l?1zV_wSZ^ivjmq&}Td@@;a+tMMqMSKO*3tr&+n!=N@OXSnK>+t^{G6o2x}AKaR+%)uqPKrn2mXOYw8M(E+McIS|YilM)YE%;2pFn=)_W&TN)mfazUsJ%z=j{G`wa()I;|G`;5OiW`6J>10)L zmfR7=*%d&|oU?#lbqFN|YT%OHrTY^5Cdd^nY5tG3w1xCPKe>m-MmWiMAky=5IXS$} z2zi0~9n8}Md+PbFcV0s<3YcY)I0MDm5J)$_IOTpp$Gbq6jkW*CRd+`Kd{SpiP-7v7hyhvd`Px4%_*0A7Mf z4<+6DY%Jm>EaY?j2n`()qa8oIo|~ka$GFAlqZA(2y#+OwwED+;_@Pi-uRY#LM1Zkm z*g(?}e}W5S3mr)$%8s#>AEwR9woO0p#i8CE^B1-)K>lg*-U9QkJhEc+nF_D?qP9pg z!LnSvG(O~u?75toE|{N@X2@4YSN+h@8P>pgSxJBWzs?F;3-11&i5`6yXrK8XMG6GM z_XWR0>INM0Tt+@$DDGt9u$KWT+b7d5j!7xa?s<_{uZ|muQxZul` zC0{DMu#m;)5BA2Z6jru_@E{(f zGxOz_6tVOF2eA5=G<$pOI;HX=RGI{r6@jo|LHsZt)+Iog$ReHRp2>RA30FV@pK(+E ztW*8lgI~6{O{*+ucki^ew!>mwiU-JRkKq^K_80s<*8w85;SZtE->!k;rXXS5+F^Hb|^y;g=vXl9Rb`my?f(@ov{I}j3l0LC473q+n2EU!*I zE($fDnXza49M0Fm%oc5 z%p!r}5a<0R1R@Du_RIUvMtiPxYrj414}9D7_j3hEJlXV6FpOJu+9ec9*;uK&kMW(H z$rjabXW!WbaTH8kM(MYkFv`rR-UP#a75WmHx|seKhym1<$7pgfy_*TlakJO9SSJlH4#ES|nGR)Mp85gV zTI9xVl|L}?mK?b1a-FT|k@bF=GjN^pEi*x zIE++p;JkeaBTCg*_R8?w^2wNoYOWs!0FB^OnT9o2$6_ML8C4zoc6%`9M?0!z^SUp@28gY4y>`xcM6f-504v*^ieW!?36?jY;*`PuLT}~ z9vopcbk1k-!S zF8FurB5<*76(KQmdM&25rPDvInErWqJf7cow1^x2mlF$0v{&!SpTJGQWi{i|1Itp$ z{(u4?`=M}@@-$yyz`a-xyi!VbHiuBWLW-;=T-|)2H)`&RW^Jqbh(!Y3$9Q}bP`W(i z%>=q1k3RmQXk~PJNY+oT)4cKir6vcrNLeqFf~y+-;OIqr(WQ5g(ykD|3NrbOJ4!#D zL~^zXh6ZL;ye~91IJ1$Uk7(U+JF90Y}<&%WKW|T6yBLQ-9QC6+%pyolwwZ^jI znxoRUL0I5pKm#XUmuIB#zM90nJbEt$J#sP2iOdv;*DDo??)bL|)9{7*Jdi3k5o1P{DSYYHp|G~ORiP74;bb82_Hr0{lZni^Ev0_qfIP#>S z{cDvzU(^JJaL(h~I|xZTNW&D=4pVV~(4yi#F&jGXAmW2HOldPe?mhw^8$j|4VHA|<<>I?7N@O6A`iAc&I1<*1%yM>(Ar5xGVJbXlF$w=*z{ApYp#6`!r@g`X9ZVXT(val!Tq zcTn`g`mHC&H{=Dd9rV|lYaLtQ`RnlA9gJjUtJ^VV-N3G)WqK^_!54*pcqf4 z0D-7TXc6}90z<{tI2}X2{!>(@`OHnv#MC4ZJs2_MBVBc#-A5)%=(c!DXC>*jBu`mG zOwEywe&!EKt57`%N4EKmc;>!mq53qbkHc5GD;!o-{w zty7Vq((en~1(uARGW1J3(Uun`+b9h3g^5|qC5a*a=M(~m@`(KYIr-f3(KF2#F+|&g zLS6+6_O_iybVue3}11u@E2Eb-8A0bRBa~rM{fS9ReRdmn8Sl)KmH-%hiM9jdvT0BM| zJ)-<(Qlb#vX#_rYAW1FEG}Ka>1fGtb+hhDxf?9QrudtdRU~=l(uVt?j3K zoDCgkz1Q&i(R>@2wU?~2F>@JSF{yT8Ft&?Pof;G-51%W2os2jc&x~g6JD-$3$FS>n zg&XAsLAz}hvhMsxe3dO6pRd%BD>yAtU$uc<#rVP?#i=A5k#{DiGacLs#x5gu$`br5 zT))NU%@r_zk(Dw%YuhdKy4F<1@BH6|Y<~E9S_eLg-^A+3dzBVH0tOV%{F>9pPti_Q zfTmcz9zz&9h`Y@V-fQc3a0%Vl`SQdI=cdDfe$Ipc!!!PuInVJ-OCi?P*27f&LK5j9 zve^9fBcNt(MtNEVd}mC{w87Ta#uU}ZZ|^iHhr#;N;Uz!mWWt@pZ-`$`cHq8!kmqc+ zsJ7UaD#5172@=g?9mOdpKXhO}C@!BS0Yx}|GOSyZ^s_TKmB6(l%Ht6z6$hG$xI%g0 zZ)`;;w8g^6wMEyr9Dq3a^9YKUB<1We_ctZ(|5G_yc?Vp_%1&k?uiKXRI=H{=6e%kD zW=7Ge8tuAM8QMEyNq&Ygf3RC-RP(<}3nWW+183Mb8b7EC-n9M0M$FXet=B2}w87<^ z43@9&FEyjv9|0l(R5{+?>eb(M?SDja%6>gcFgJ9mrz9mpjXal1N^2mB&h`^puD=zH z8HjJZ9e7kXh-cUTWFNMYbh1YxYZF-duIda|%8vC33P;Isaa-ue)ZDZY{fVcsvmKV3Q{-wG6(Q+YB8JU^ zmx=c64G*9O1jBdlXR~3k zA17)Jt5wGM+2j0fraPQ&`~RzX`RxuU>Qtg+@x{Nf^T!{1{>Gm8W7B+)_w~#Fm}NEB z_orXsK%HNbWuYro6cW<=%dbvI|77`V9q>KuUcudAS&&V*eXP`|ni! z|NCx*$L+*@`}UpGyL$P~k6raWkldBgx_9u@ut%s&*3R$1C-&)GGrC%O#qP=f2T-`R A0{{R3 literal 0 HcmV?d00001 diff --git a/wiki/contributing/requested-extensions.md b/wiki/contributing/requested-extensions.md new file mode 100644 index 00000000000..abe084da437 --- /dev/null +++ b/wiki/contributing/requested-extensions.md @@ -0,0 +1,33 @@ +Use this issue to discuss the contents of this wiki [#2789](https://github.com/Microsoft/vscode/issues/2789). + +## Community Requested Extensions + +This is a list of community requested extensions collected from a variety of sources (twitter, user voice, etc.). + +For discussions on specific extensions and to add more information, link a newly created issue to one of the extensions names below. + +- [ ] Auto complete relative paths in Javascript files. See [SO question](https://stackoverflow.com/questions/35415444/is-it-possible-to-auto-complete-relative-paths-in-vscode) for details. +- [ ] [GCC linting](https://atom.io/packages/linter-gcc) +- [ ] [atom-alignment](https://atom.io/packages/atom-alignment). Aligning multi-line, multi-cursor and multiple selections. +- [ ] [Sublime-Style-Column-Selection](https://atom.io/packages/Sublime-Style-Column-Selection) +- [ ] [activate-power-mode](https://atom.io/packages/activate-power-mode) +- [ ] [atom-beautify](https://atom.io/packages/atom-beautify). Lots of language support for code formatting. +- [ ] [atom-typescript](https://atom.io/packages/atom-typescript). Feature that is missing is compile on save with no task runner configuration. Good task candidate. +- [ ] [color-picker](https://atom.io/packages/color-picker). Sleek color picking UI widget. +- [ ] [hex](https://atom.io/packages/hex). View the hex of any dump file. + +## Complete + +- [x] docblockr, doxy-commenting -> VS Code [Document This](https://marketplace.visualstudio.com/items?itemName=joelday.docthis) extension +- [x] atom alignment -> VS Code [Align](https://marketplace.visualstudio.com/items?itemName=steve8708.Align) +- [x] [escape-utils](https://atom.io/packages/escape-utils) => VS Code [Encode Decode](https://marketplace.visualstudio.com/items?itemName=mitchdenny.ecdc) +- [x] [html2jade-plus](https://atom.io/packages/html2jade-plus) => VS Code [html2jade](https://marketplace.visualstudio.com/items?itemName=wmaurer.html2jade) +- [x] [jsfmt](https://atom.io/packages/atom-jsfmt) => VS Code [Javascript Standard Format](https://marketplace.visualstudio.com/items?itemName=chenxsan.vscode-standard-format) +- [x] [language-jade](https://atom.io/packages/language-jade) => Shipped with Editor. +- [x] [linter](https://atom.io/packages/linter) => Lots of linters available, including [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint). +- [x] [linter-eslint](https://atom.io/packages/eslint) => VS Code [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) +- [x] [linter-jscs](https://atom.io/packages/linter-jscs) => VS Code [JSCS Linting](https://marketplace.visualstudio.com/items?itemName=ms-vscode.jscs) +- [x] [linter-tslint](https://atom.io/packages/linter-tslint) => VS Code [tslint](https://marketplace.visualstudio.com/items?itemName=eg2.tslint) +- [x] [pretty-json](https://atom.io/packages/pretty-json) => VS Code [Pretty JSON](https://marketplace.visualstudio.com/items?itemName=mohsen1.prettify-json) +- [x] [tabs-to-spaces](https://atom.io/packages/tabs-to-spaces) => [Untabify](https://marketplace.visualstudio.com/items?itemName=ilich8086.Untabify) +- [x] [todo-show](https://atom.io/packages/todo-show). Show todo, fixme, and changed. -> [vscode-todo](https://marketplace.visualstudio.com/items/MattiasPernhult.vscode-todo) diff --git a/wiki/contributing/submitting-bugs-and-suggestions.md b/wiki/contributing/submitting-bugs-and-suggestions.md new file mode 100644 index 00000000000..bfa0eb67f01 --- /dev/null +++ b/wiki/contributing/submitting-bugs-and-suggestions.md @@ -0,0 +1,28 @@ +# Submitting bugs and suggestions. + +The Code project tracks issues and feature requests using the [GitHub issue tracker](https://github.com/microsoft/vscode/issues) for the `vscode` repository. + +## Before Submitting an Issue +First, please do a search in open issues to see if the issue or feature request has already been filed. If there is an issue add your comments to this issue. + +The Code project is distributed across multiple repositories, try to file the issue against the correct repository [Related Projects](../project-management/related-projects.md). + +If your issue is a question consider asking it on [Stack Overflow](https://stackoverflow.com/questions/tagged/vscode) using the tag `vscode`. + +## Writing Great Issues and Suggestions + +File a single issue per problem and feature request, do not file combo issues. + +The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix. Consider the following: + +* Provide reproducable steps, what the result of the steps was, an what you would have expected. +* Description of what you expect to happen +* Animated GIFs +* Code that demonstrates the issue +* Version of VS Code +* Errors in the Dev Tools Console (Help | Toggle Developer Tools) +* When you have extensions installed, can you reproduce the issue when starting vscode without extensions by using `--disable-extensions`? + +Don't feel bad if we can't reproduce the issue and ask for more information! + +Finally, this is our [issue tracking](../project-management/issue-tracking.md) work flow that describes what happens once you submitted an issue. \ No newline at end of file diff --git a/wiki/project-management/breaking-changes.md b/wiki/project-management/breaking-changes.md new file mode 100644 index 00000000000..0431ece20ba --- /dev/null +++ b/wiki/project-management/breaking-changes.md @@ -0,0 +1,6 @@ + +# Breaking Changes + +We take breaking changes seriously and will outline them for each milestone in this document. As we are still pre "1.0", you can expect that there will be changes before we lock down the API set. + +## December 2015 diff --git a/wiki/project-management/development-process.md b/wiki/project-management/development-process.md new file mode 100644 index 00000000000..4b4af163f5f --- /dev/null +++ b/wiki/project-management/development-process.md @@ -0,0 +1,39 @@ +# Development Process + +## Roadmap +The team has a 6 month high level [Roadmap](roadmap.md) which defines high level themes and features to be addressed in this timeframe. + +## Iterations +We will work in monthly iterations on the items on the roadmap. Iterations are roughly month based, rather than week based. We will begin a milestone on a Monday and end on a Friday, meaning that each milestone can have a different duration, depending on how the weeks align. + +At the end of each iteration we want to have a version of Code that can be used by the Code community. The work planned during an iteration is captured in the iteration plan (see [Iteration Plans](iteration-plans.md)). The feature highlights of each iteration are highlighted in the release notes. + +## Planning + +Before each milestone we will prioritize features to implement and bugs to fix in the upcoming iteration. The result of this meeting will be a set of features on the [Roadmap](roadmap.md) along with a set of bugs marked to be fixed in the upcoming Milestone. Together, this encompasses the planned work for the upcoming month. + +Each feature should have design or description of the feature that can be contributed by, augmented, and commented upon by the community. + +## Inside an Iteration +We work in weekly segments: +- **Week 1**: Reduce debt introduced in the previous iteration, address critical issues uncovered in the previous iteration, plan the next iteration +- **Week 2**: Work according the plan +- **Week 3+**: Work according the plan +- **Final Week**: End game + - the team tests the new features according a test plan and updates the documentation. + - we make a pre-release available on the 'insiders' channel and invite users to help us test the pre-release. + +## Triage +Bugs and features will be assigned a milestone and within a milestone they will be assigned a priority. The priority dictates the order in which issues should be addressed. A `important` bug (something that we think is critical for the milestone) is to be addressed before the other bugs. + +To find out when a bug fix will be available in an update, then please check the milestone that is assigned to the issue. + +Please see [Issue Tracking](issue-tracking.md) for a description of the different workflows we are using. + +## Weekly +Each week we will manage work items, crossing off completed features, and triaging bugs. At the end of the milestone we will strive for 0 bugs and 0 issues assigned to the milestone. Some bugs and features will then be either postponed to later milestones or moved back to the backlog. + +## End Game +The final week of the milestone is what we call the "end game". During this week we will wrap up any feature work, we will test using a test plan [Iteration Plans](iteration-plans.md), and then we will fix the critical bugs for that milestone. + +During the endgame we make a build available on the `insiders` channel ([see also](https://code.visualstudio.com/Docs/supporting/FAQ#_how-can-i-test-prerelease-versions-of-vs-code). We will monitor incoming issues from this release, fix any critical bugs that arise, and then produce a final `stable` release for the milestone and the `stable` channel. \ No newline at end of file diff --git a/wiki/project-management/issue-tracking.md b/wiki/project-management/issue-tracking.md new file mode 100644 index 00000000000..06c840f5951 --- /dev/null +++ b/wiki/project-management/issue-tracking.md @@ -0,0 +1,67 @@ +This page describes how we track issues in the `vscode` repository. + +## Inbox tracking and Issue triage +New issues or pull requests submitted by the community are triaged by a team member. The team rotates the inbox tracker on a weekly basis. + +### Inbox Tracking + +The [Inbox query](https://github.com/Microsoft/vscode/issues?utf8=%E2%9C%93&q=is%3Aopen+no%3Aassignee+-label%3Afeature-request+-label%3Atestplan-item+) contains all the +- **open issues or pull requests** that +- are **not feature requests** nor **test plan items** and +- have **no owner assignment**. + +The **inbox tracker** should do the following initial triage: +- Is the issue **invalid**? Close it and justify the reason. +- Is the issue **a general question**, like *How can I compile TypeScript*? Close it and redirect the user to [Stack Overflow](http://stackoverflow.com/questions/tagged/vscode) with [this message](https://gist.github.com/joaomoreno/960b4f643b2ff09bcdf7). +- Is it a feature request? Tag it accordingly and assign to owner. The owner will unassign himself if he does not plan to work on the feature. +- Else, assign the issue to an **owner**. + +**Everyone** should do the following secondary triage to their assigned issues (the **inbox tracker** may do some of these steps too, if obvious): +- If an issue needs more info, assign the `needs more info` and ask for more information in a comment. +- If the issue is a bug, add the `bug` label. +- If the issue is a feature request, add the label `feature request` and @-mention if someone from the team should be aware of the feature request. +- If needed, edit the title to improve it. +- If possible, assign the issue with a feature/topic area label. +- If the issue is important, assign an `important` label and optionally mention @microsoft/vscode to get the attention of the entire team. +- If the issue needs to be fixed in this release, assign it to the current milestone (eg: blocks a scenario, completes a new feature, etc.). Else, assign it to the **Backlog**. +- If needed, follow-up with the author. + +### Planning +During planning we review the open issues and assign the ones we plan to work on to the current milestone. Issues that do not make it for the current milestone are either assigned to the next milestone or they are moved back to the backlog milestone. + +## Filing bugs as development team member +When team members files a bug they perform steps of the inbox tracker for the issue they filed. Therefore bugs filed by the development team do not need to be triged by the inbox tracker. + +## Verification + +Issues need to be verified. + +You can easily find the issues that need verification or reassignment from your part with the following query (remember to replace your username and the iteration name): + +https://github.com/issues?utf8=%E2%9C%93&q=is%3Aissue+assignee%3Ajoaomoreno+is%3Aclosed+-label%3Averified+-label%3Atestplan-item+milestone%3A%22Feb+2016%22+ + +- Once an issue is fixed its state is changed to `closed` +- If you are the issue's resolver, please reassign the issue to someone else for verification +- Once an issue is verified the `verified` label is added to it +- Invalid, duplicates, etc should also be added the `verified` label so they get out of the queries + +## Duplicates +Duplicate bugs are closed with a comment `duplicates #issue`. Please try to reference an earlier issue **unless** a later issue is more appropriate (has more context, better scenarios, repro steps, etc.). + +## Moving issues to another repository +Use the [issue mover](https://github-issue-mover.appspot.com/) tool to move bugs to another repository. + +## Consistent labels across vscode repositories + +Visual Studio Code consists of multiple repositories and we should use consistent work flows and labels across all our repositories. + +To establish consistent labels across all our repositories use the [Label Manager](http://www.dorukdestan.com/github-label-manager/) tool. + +## Consistent milestones across vscode repositories + +To enable planning across repositories all the Visual Studio Code related repositories need to define the same milestones. + +## Iteration Planning +We use issues for iteration plans and the wiki for the test plan. +- Iteration Plans have a label `iteration-plan` with `tasks` [ ] for the different items. The individual items are tracked in existing issues (bugs, feature requests). If there is no existing issue then a new issue with the label `plan-item` is created. Here is an [example](https://github.com/Microsoft/vscode/issues/917). +- We use a wiki page for a test plan. Here is an [example](https://github.com/Microsoft/vscode/wiki/December-Test-Plan). \ No newline at end of file diff --git a/wiki/project-management/iteration-plans.md b/wiki/project-management/iteration-plans.md new file mode 100644 index 00000000000..468610ad5f1 --- /dev/null +++ b/wiki/project-management/iteration-plans.md @@ -0,0 +1,26 @@ +# Iteration Plans + +## April +* [Iteration Plan](https://github.com/Microsoft/vscode/issues/4888) +* [Test Plan](https://github.com/Microsoft/vscode/issues?q=label%3Atestplan-item+milestone%3A%22April+2016%22) + +## March +* [Iteration Plan](https://github.com/Microsoft/vscode/issues/3555) +* [Test Plan](https://github.com/Microsoft/vscode/issues?q=label%3Atestplan-item+milestone%3A%22March+2016%22) + +## February +* [Iteration Plan](https://github.com/Microsoft/vscode/issues/2616) +* [Test Plan](https://github.com/Microsoft/vscode/issues?q=label%3Atestplan-item+milestone%3A%22Feb+2016%22) + +## Archive +## January +* [Iteration Plan](https://github.com/Microsoft/vscode/issues/1826) +* [Test Plan](https://github.com/Microsoft/vscode/issues?q=label%3Atestplan-item+milestone%3A%22Jan+2016%22) + +### December +* [December Iteration Plan](https://github.com/Microsoft/vscode/issues/917) +* [December Test Plan](https://github.com/Microsoft/vscode/wiki/December-Test-Plan) +* [December Pre-release](https://github.com/Microsoft/vscode/wiki/December-Pre-Release) + +### November +* [November|November Plan](https://github.com/Microsoft/vscode/wiki/November-Plan) \ No newline at end of file diff --git a/wiki/project-management/previous-releases.md b/wiki/project-management/previous-releases.md new file mode 100644 index 00000000000..791f11af43d --- /dev/null +++ b/wiki/project-management/previous-releases.md @@ -0,0 +1,17 @@ +# Previous Releases + +| Version | Windows | OS X | Linux ia32 | Linux x64 | +| ------- | ------- | ---- | ---------- | --------- | +| 0.10.10 |[download](https://az764295.vo.msecnd.net/stable/5b5f4db87c10345b9d5c8d0bed745bcad4533135/VSCodeSetup-stable.exe) | [download](https://az764295.vo.msecnd.net/stable/5b5f4db87c10345b9d5c8d0bed745bcad4533135/VSCode-darwin-stable.zip) | [download](https://az764295.vo.msecnd.net/stable/5b5f4db87c10345b9d5c8d0bed745bcad4533135/VSCode-linux-ia32-stable.zip) | [download](https://az764295.vo.msecnd.net/stable/5b5f4db87c10345b9d5c8d0bed745bcad4533135/VSCode-linux-x64-stable.zip) +| 0.10.9 | | [download](https://az764295.vo.msecnd.net/stable/45d69357c9eb068dd8e624f5b0fe461cd2078d88/VSCode-darwin.zip) | | +| 0.10.8 | [download](https://az764295.vo.msecnd.net/stable/db71ac615ddf9f33b133ff2536f5d33a77d4774e/VSCodeSetup-stable.exe) | | [download](https://az764295.vo.msecnd.net/stable/db71ac615ddf9f33b133ff2536f5d33a77d4774e/VSCode-linux-ia32-stable.zip) | [download](https://az764295.vo.msecnd.net/stable/db71ac615ddf9f33b133ff2536f5d33a77d4774e/VSCode-linux-x64-stable.zip) +| 0.10.6 | [download](https://az764295.vo.msecnd.net/public/0.10.6/VSCodeSetup.exe) | [download](https://az764295.vo.msecnd.net/public/0.10.6/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.10.6/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.10.6/VSCode-linux64.zip) +| 0.10.5 |[download](https://az764295.vo.msecnd.net/public/0.10.5/VSCodeSetup.exe) | [download](https://az764295.vo.msecnd.net/public/0.10.5/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.10.5/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.10.5/VSCode-linux64.zip) +| 0.10.3 |[download](https://az764295.vo.msecnd.net/public/0.10.3/VSCodeSetup.exe) | [download](https://az764295.vo.msecnd.net/public/0.10.3/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.10.3/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.10.3/VSCode-linux64.zip) +| 0.9.2 | [download](https://az764295.vo.msecnd.net/public/0.9.2/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.2/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.2/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.2/VSCode-linux64.zip) +| 0.9.1 | [download](https://az764295.vo.msecnd.net/public/0.9.1/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.1/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.1/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.1/VSCode-linux64.zip) +| 0.9.0 | [download](https://az764295.vo.msecnd.net/public/0.9.0/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.0/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.0/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.9.0/VSCode-linux64.zip) +| 0.8.0 | [download](https://az764295.vo.msecnd.net/public/0.8.0/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.8.0/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.8.0/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.8.0/VSCode-linux64.zip) +| 0.7.0 | [download](https://az764295.vo.msecnd.net/public/0.7.0/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.7.0/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.7.0/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.7.0/VSCode-linux64.zip) +| 0.6.0 | [download](https://az764295.vo.msecnd.net/public/0.6.0/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.6.0/VSCode-darwin.zip) | [download](https://az764295.vo.msecnd.net/public/0.6.0/VSCode-linux32.zip) | [download](https://az764295.vo.msecnd.net/public/0.6.0/VSCode-linux64.zip) +| 0.5.0 | [download](https://az764295.vo.msecnd.net/public/0.5.0/VSCode-win32.zip) | [download](https://az764295.vo.msecnd.net/public/0.5.0/VSCode-darwin.zip) |||| diff --git a/wiki/project-management/related-projects.md b/wiki/project-management/related-projects.md new file mode 100644 index 00000000000..a66940678a3 --- /dev/null +++ b/wiki/project-management/related-projects.md @@ -0,0 +1,57 @@ +The Code project consists of the `vscode` repository plus a number of satellite projects. + +## Core Repositories +|Component|Repository| +|---|---| +|Node Debug|[vscode-node-debug](https://github.com/microsoft/vscode-node-debug)| +|Mono Debug|[vscode-mono-debug](https://github.com/microsoft/vscode-mono-debug)| +|File Watcher|[vscode-filewatcher-windows](https://github.com/microsoft/vscode-filewatcher-windows)| +|`vscode.d.ts`|[vscode-extension-code](https://github.com/microsoft/vscode-extension-vscode)| +|`vscode-languageserver`|[vscode-languageserver-node](https://github.com/microsoft/vscode-languageserver-node)| +|TextMate Service|[vscode-textmate](https://github.com/microsoft/vscode-textmate)| +|AMD Loader|[vscode-loader](https://github.com/microsoft/vscode-loader)| + +## SDK Tools +|Tool|Repository| +|---|---| +|yo code generator|[vscode-generator-code](https://github.com/microsoft/vscode-generator-code)| +|vsce publishing tool|[vscode-vsce](https://github.com/microsoft/vscode-vsce)| + +## Documentation +|Repository| +|---| +|[`vscode-docs`](https://github.com/microsoft/vscode-docs)| + +## Languages +|Language|Repository| +|---|---| +|C#|[Omnisharp](https://github.com/OmniSharp/omnisharp-vscode) +|Go|[vscode-go](https://github.com/microsoft/vscode-go)| +|LaTeX|[vscode-latex](https://github.com/microsoft/vscode-latex)| + +## Linters +|Linter|Repository| +|---|---| +|JSCS |[vscode-jscs](https://github.com/microsoft/vscode-jscs)| +|TSLint |[vscode-tslint](https://github.com/microsoft/vscode-tslint)| +|ESLint |[vscode-eslint](https://github.com/microsoft/vscode-eslint)| +|JSHint |[vscode-jshint](https://github.com/microsoft/vscode-jshint)| + +## Themes +|Theme| +|---| +|[`vscode-themes`](https://github.com/microsoft/vscode-themes) + + +## Samples +|Sample|Repository| +|---|---| +|Mock Debug Adapter|[vscode-mock-debug](https://github.com/microsoft/vscode-mock-debug)| +|Editor Config|[vscode-editorconfig](https://github.com/microsoft/vscode-editorconfig)| +|Markdown Tools|[vscode-mdtools](https://github.com/microsoft/vscode-mdtools)| +|Awesome Backspace|[vscode-backspace](https://github.com/microsoft/vscode-backspace)| +|JSDoc Comments|[vscode-comment](https://github.com/microsoft/vscode-comment)| +|HTML Tag Wrapper|[vscode-htmltagwrap](https://github.com/microsoft/vscode-htmltagwrap)| +|Word Count|[vscode-wordcount](https://github.com/microsoft/vscode-wordcount)| +|Markdown Spell Checker|[vscode-spellcheck](https://github.com/microsoft/vscode-spell-check)| +|Samples|[vscode-extension-samples](https://github.com/microsoft/vscode-extension-samples)| \ No newline at end of file diff --git a/wiki/project-management/roadmap.md b/wiki/project-management/roadmap.md new file mode 100644 index 00000000000..3fba3eb7fbb --- /dev/null +++ b/wiki/project-management/roadmap.md @@ -0,0 +1,42 @@ +# 1.0 Release of VS Code + +As of March 31st we will have completed the engineering work for our “1.0” release of VS Code. However, with all of the excitement around [//Build](https://build.microsoft.com/), we've decided to take this opportunity to hold back our "1.0" release for just a couple of weeks, to get some more community testing on the product. Our “Insiders” release has been updated to match what we plan to ship in mid April. We encourage you to [download it today](http://code.visualstudio.com/insiders?wt.mc_id=DX_835018&utm_source=blogs&utm_medium=ms%20editorial&utm_campaign=GH%20Roadmap%201-0%20Update) ([release notes](https://github.com/Microsoft/vscode-docs/blob/vnext/release-notes/latest.md)), use it, and let us know if you find any critical ship stopping issues. In the meantime we're going to finish up work on the [1.0 documentation](https://github.com/Microsoft/vscode-docs/tree/vnext/docs), clean up debt, unwind a bit, and start planning the future of Visual Studio Code. + +---- + +## Declare General Availability ("GA") +* Accessibility +* Localization +* Stable APIs +* Performance + +## Eliminate Adoption Blockers +### Core Editing +* Code folding +* Providing key bindings for users used to other editors, support VIM extension authors +* Improve the document management, stacking behaviour of editors + +## Address Development Pain Points +### Workbench +* Support horizontal layout for output (debug output, task output) + +### Tasks +* Support running multiple tasks +* Improve support for continously running `watching` tasks + +### Extensions +* Improve in product extension selection performance +* Improve extension discovery and acquisition experience, looking across website/marketplace and product + +### Debug +* Support conditional break points +* Support remote debugging (e.g. attach to Node app running in Docker container locally or on Linux) +* Support additional debug architectures (e.g. xdebug for PHP, C# debugging) + +### JavaScript +* Improved Intellisense in JavaScript, migrate to [Salsa](https://github.com/Microsoft/TypeScript/issues/4789) +* Improve the support for JSX (Salsa enables this) + +### C# +* Move into a separate extension +* Debugging support (collaboration with the CoreCLR team) :heart: From a333dbc22165106bf01bbb63cd1596b50f30b618 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 13 Apr 2016 12:46:25 -0700 Subject: [PATCH 091/117] Various wiki clean ups, fix language hints --- wiki/contributing/code-organization.md | 8 +-- wiki/contributing/coding-guidelines.md | 18 +++--- .../contributor-license-agreement.md | 1 + wiki/contributing/how-to-contribute.md | 60 ++++++++++++------- .../project-management/development-process.md | 4 +- 5 files changed, 53 insertions(+), 38 deletions(-) diff --git a/wiki/contributing/code-organization.md b/wiki/contributing/code-organization.md index 8ce67ee17dc..a4cf33a38f4 100644 --- a/wiki/contributing/code-organization.md +++ b/wiki/contributing/code-organization.md @@ -16,13 +16,13 @@ The `core` is partitioned into the following layers: The `core` of Code is fully implemented in [TypeScript](https://github.com/microsoft/typescript). Inside each layer the code is organized by the target runtime environment. This ensures that only the runtime specific APIs are used. In the code we distinguish between the following target environments: - `common`: Source code that only requires basic JavaScript APIs and run in all the other target environments - `browser`: Source code that requires the `browser` APIs like access to the DOM - - may use code from: `common` + - may use code from: `common` - `node`: Source code that requires [`nodejs`](https://nodejs.org) APIs - - may use code from: `common` + - may use code from: `common` - `electron-browser`: Source code that requires the [Electron renderer-process](https://github.com/atom/electron/tree/master/docs#modules-for-the-renderer-process-web-page) APIs - - may use code from: `common`, `browser`, `node` + - may use code from: `common`, `browser`, `node` - `electron-main`: Source code that requires the [Electron main-process](https://github.com/atom/electron/tree/master/docs#modules-for-the-main-process) APIs - - may use code from: `common`, `node` + - may use code from: `common`, `node` # Dependency Injection diff --git a/wiki/contributing/coding-guidelines.md b/wiki/contributing/coding-guidelines.md index 1bcac5ffa0d..71a53ab9252 100644 --- a/wiki/contributing/coding-guidelines.md +++ b/wiki/contributing/coding-guidelines.md @@ -4,7 +4,7 @@ We prefer a **rebase workflow** and occasional **feature branches**. Most work happens directly on the `master` branch. For that reason, we recommend setting the `pull.rebase` setting to true. -``` +```bash git config --global pull.rebase true ``` @@ -34,18 +34,18 @@ We use tabs, not spaces. * Use arrow functions `=>` over anonymous function expressions * Only surround arrow function parameters when necessary. For example, `(x) => x + x` is wrong but the following are correct: -``` javascript - x => x + x - (x,y) => x + y - (x: T, y: T) => x === y +```javascript +x => x + x +(x,y) => x + y +(x: T, y: T) => x === y ``` * Always surround loop and conditional bodies with curly braces * Open curly braces always go on the same line as whatever necessitates them * Parenthesized constructs should have no surrounding whitespace. A single space follows commas, colons, and semicolons in those constructs. For example: -``` javascript - for (var i = 0, n = str.length; i < 10; i++) { } - if (x < 10) { } - function f(x: number, y: string): void { } +```javascript +for (var i = 0, n = str.length; i < 10; i++) { } +if (x < 10) { } +function f(x: number, y: string): void { } ``` \ No newline at end of file diff --git a/wiki/contributing/contributor-license-agreement.md b/wiki/contributing/contributor-license-agreement.md index 29410312fb8..bec0e316b2c 100644 --- a/wiki/contributing/contributor-license-agreement.md +++ b/wiki/contributing/contributor-license-agreement.md @@ -1,4 +1,5 @@ # Contributor License Agreement + You must sign a Contribution License Agreement (CLA) before your PR will be merged. This a one-time requirement for Microsoft projects in GitHub. You can read more about [Contribution License Agreements (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) on Wikipedia. However, you don't have to do this up-front. You can simply clone, fork, and submit your pull-request as usual. diff --git a/wiki/contributing/how-to-contribute.md b/wiki/contributing/how-to-contribute.md index 785db52fcce..7127d408686 100644 --- a/wiki/contributing/how-to-contribute.md +++ b/wiki/contributing/how-to-contribute.md @@ -18,16 +18,19 @@ Code includes node module dependencies that require native compilation. To ensur For native compilation, you will need [Python](https://www.python.org/downloads/) (version `v2.7` recommended, `v3.x.x` is __*not*__ supported), as well as a C/C++ compiler tool chain. -**Windows:** +**Windows** + * In addition to [Python v2.7](https://www.python.org/downloads/release/python-279/), make sure you have a PYTHON environment variable set to `drive:\path\to\python.exe`, not to a folder * [Visual Studio 2013 for Windows Desktop](https://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx) or [Visual Studio 2015](https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx), make sure to select the option to install all C++ tools and the Windows SDK **OS X** + * Command line developer tools * Python should be installed already * [XCode](https://developer.apple.com/xcode/downloads/) and the Command Line Tools (XCode -> Preferences -> Downloads), which will install `gcc` and the related toolchain containing `make` **Linux** + * Python v2.7 * `make` * A proper C/C++11 compiler tool chain, for example [GCC](https://gcc.gnu.org) @@ -38,23 +41,29 @@ After you have these tools installed, run the following commands to check out Co **OS X** - git clone https://github.com/microsoft/vscode - cd vscode - ./scripts/npm.sh install +```bash +git clone https://github.com/microsoft/vscode +cd vscode +./scripts/npm.sh install +``` **Windows** - git clone https://github.com/microsoft/vscode - cd vscode - scripts\npm install +```bash +git clone https://github.com/microsoft/vscode +cd vscode +scripts\npm install +``` **Linux** - git clone https://github.com/microsoft/vscode - cd vscode - ./scripts/npm.sh install --arch=x64 - # for 32bit Linux - #./scripts/npm.sh install --arch=ia32 +```bash +git clone https://github.com/microsoft/vscode +cd vscode +./scripts/npm.sh install --arch=x64 +# for 32bit Linux +#./scripts/npm.sh install --arch=ia32 +``` **Note:** For more information on how to install NPM modules globally on UNIX systems without resorting to `sudo`, refer to [this guide](http://www.johnpapa.net/how-to-use-npm-global-without-sudo-on-osx/) . @@ -81,13 +90,17 @@ Errors and warnings will show in the console while developing Code. If you use V ### Validate your changes To test the changes you launch a development version of VS Code on the workspace `vscode`, which you are currently editing. -OS X and Linux +**OS X and Linux** - ./scripts/code.sh +```bash +./scripts/code.sh +``` -Windows +**Windows** - .\scripts\code.bat +```bash +.\scripts\code.bat +``` You can identify the development version of Code by the Electron icon in the Dock or Taskbar. @@ -102,12 +115,15 @@ The **render** process runs the UI code inside the Shell window. To debug code r * Install the [Debugger for Chrome](https://marketplace.visualstudio.com/items/msjsdiag.debugger-for-chrome) extension. This extension will let you attach to and debug client side code running in Chrome. * Launch the development version of Code with the following command line option: -OSX and Linux -``` bash +**OS X and Linux** + +```bash ./scripts/code.sh --remote-debugging-port=9222 ``` -Windows -``` bash + +**Windows** + +```bash scripts\code --remote-debugging-port=9222 ``` @@ -115,11 +131,10 @@ scripts\code --remote-debugging-port=9222 #### Using the Chrome Developer Tools - * Run the `Developer: Toggle Developer Tools` command from the Command Palette in your development instance of Code to launch the Chrome tools. * It's also possible to debug the released versions of Code, since the sources link to sourcemaps hosted online. -[![](images/sourcemaps.png)](images/sourcemaps.png) +![](images/sourcemaps.png) The **extension host** process runs code implemented by a plugin. To debug extensions (including those packaged with Code) which run in the extension host process, you can use VS Code itself. Switch to the Debug viewlet, choose the `Attach to Extension Host` configuration, and press F5. @@ -146,5 +161,4 @@ Check out the [issues list](https://github.com/Microsoft/vscode/issues?utf8=%E2% We're also interested in your feedback for the future of Code. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly. ## Discussion Etiquette - In order to keep the conversation clear and transparent, please limit discussion to English and keep things on topic with the issue. Be considerate to others and try to be courteous and professional at all times. \ No newline at end of file diff --git a/wiki/project-management/development-process.md b/wiki/project-management/development-process.md index 4b4af163f5f..7f9b10e2092 100644 --- a/wiki/project-management/development-process.md +++ b/wiki/project-management/development-process.md @@ -20,8 +20,8 @@ We work in weekly segments: - **Week 2**: Work according the plan - **Week 3+**: Work according the plan - **Final Week**: End game - - the team tests the new features according a test plan and updates the documentation. - - we make a pre-release available on the 'insiders' channel and invite users to help us test the pre-release. + - the team tests the new features according a test plan and updates the documentation. + - we make a pre-release available on the 'insiders' channel and invite users to help us test the pre-release. ## Triage Bugs and features will be assigned a milestone and within a milestone they will be assigned a priority. The priority dictates the order in which issues should be addressed. A `important` bug (something that we think is critical for the milestone) is to be addressed before the other bugs. From 9b8383faac32ca8820a096acde8504a0007edf5a Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 13 Apr 2016 13:36:56 -0700 Subject: [PATCH 092/117] Localize "New Window" in desktop entry Fixes #5234 --- resources/linux/code.desktop | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/linux/code.desktop b/resources/linux/code.desktop index bd3e9de466f..d8dbc267ecb 100644 --- a/resources/linux/code.desktop +++ b/resources/linux/code.desktop @@ -14,5 +14,13 @@ Actions=new-window; [Desktop Action new-window] Name=New Window Name[de]=Neues Fenster +Name[es]=Nueva ventana +Name[fr]=Nouvelle fenêtre +Name[it]=Nuova finestra +Name[ja]=新規ウインドウ +Name[ko]=새 창 +Name[ru]=Новое окно +Name[zh_CN]=新建窗口 +Name[zh_TW]=開新視窗 Exec=/usr/bin/@@NAME@@ --new-window %U Icon=@@NAME@@ From af0103810285452f2f5f55a90498ef44ab52bd84 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 14 Apr 2016 08:39:49 +0200 Subject: [PATCH 093/117] adopt fw link --- src/vs/workbench/services/files/electron-browser/fileService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/files/electron-browser/fileService.ts b/src/vs/workbench/services/files/electron-browser/fileService.ts index 1e671252d1f..a4b7234d610 100644 --- a/src/vs/workbench/services/files/electron-browser/fileService.ts +++ b/src/vs/workbench/services/files/electron-browser/fileService.ts @@ -79,7 +79,7 @@ export class FileService implements IFileService { message: nls.localize('netVersionError', "The Microsoft .NET Framework 4.5 is required. Please follow the link to install it."), actions: [ new Action('install.net', nls.localize('installNet', "Download .NET Framework 4.5"), null, true, () => { - shell.openExternal('https://www.microsoft.com/en-us/download/details.aspx?id=30653'); + shell.openExternal('http://go.microsoft.com/fwlink/?LinkId=786533'); return TPromise.as(true); }) From 3450cc29d6124fd78d1643c9264a984b616d6cc0 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 08:57:25 +0200 Subject: [PATCH 094/117] debt - move more language feature registries into modes.ts --- src/vs/editor/common/modes.ts | 16 +++++++++ .../contrib/codelens/browser/codelens.ts | 4 +-- .../contrib/codelens/common/codelens.ts | 5 +-- .../contrib/find/common/findController.ts | 2 +- src/vs/editor/contrib/format/common/format.ts | 8 +---- .../contrib/format/common/formatActions.ts | 3 +- .../browser/goToDeclaration.ts | 4 +-- .../goToDeclaration/common/goToDeclaration.ts | 5 +-- .../hover/browser/modesContentHover.ts | 4 +-- src/vs/editor/contrib/hover/common/hover.ts | 5 +-- .../contrib/quickFix/browser/quickFix.ts | 3 +- .../contrib/quickFix/browser/quickFixModel.ts | 3 +- .../contrib/quickFix/common/quickFix.ts | 5 +-- .../contrib/quickOpen/common/quickOpen.ts | 11 +------ .../wordHighlighter/common/wordHighlighter.ts | 5 +-- .../typescript/common/languageFeatures.ts | 17 ++++------ .../api/node/extHostLanguageFeatures.ts | 33 ++++++++----------- .../quickopen/browser/gotoSymbolHandler.ts | 3 +- .../node/api/extHostLanguageFeatures.test.ts | 3 +- 19 files changed, 59 insertions(+), 80 deletions(-) diff --git a/src/vs/editor/common/modes.ts b/src/vs/editor/common/modes.ts index 36badf8076b..cd030dd8f4b 100644 --- a/src/vs/editor/common/modes.ts +++ b/src/vs/editor/common/modes.ts @@ -767,3 +767,19 @@ export const RenameRegistry = new LanguageFeatureRegistry('renam export const SuggestRegistry = new LanguageFeatureRegistry('suggestSupport'); export const ParameterHintsRegistry = new LanguageFeatureRegistry('parameterHintsSupport'); + +export const ExtraInfoRegistry = new LanguageFeatureRegistry('extraInfoSupport'); + +export const OutlineRegistry = new LanguageFeatureRegistry('outlineSupport'); + +export const OccurrencesRegistry = new LanguageFeatureRegistry('occurrencesSupport'); + +export const DeclarationRegistry = new LanguageFeatureRegistry('declarationSupport'); + +export const CodeLensRegistry = new LanguageFeatureRegistry('codeLensSupport'); + +export const QuickFixRegistry = new LanguageFeatureRegistry('quickFixSupport'); + +export const FormatRegistry = new LanguageFeatureRegistry('formattingSupport'); + +export const FormatOnTypeRegistry = new LanguageFeatureRegistry('formattingSupport'); diff --git a/src/vs/editor/contrib/codelens/browser/codelens.ts b/src/vs/editor/contrib/codelens/browser/codelens.ts index 687f754fcd1..6b6791b281d 100644 --- a/src/vs/editor/contrib/codelens/browser/codelens.ts +++ b/src/vs/editor/contrib/codelens/browser/codelens.ts @@ -18,11 +18,11 @@ import {IKeybindingService} from 'vs/platform/keybinding/common/keybindingServic import {IMessageService} from 'vs/platform/message/common/message'; import {Range} from 'vs/editor/common/core/range'; import * as editorCommon from 'vs/editor/common/editorCommon'; -import {ICodeLensSymbol, ICommand} from 'vs/editor/common/modes'; +import {CodeLensRegistry, ICodeLensSymbol, ICommand} from 'vs/editor/common/modes'; import {IModelService} from 'vs/editor/common/services/modelService'; import * as editorBrowser from 'vs/editor/browser/editorBrowser'; import {EditorBrowserRegistry} from 'vs/editor/browser/editorBrowserExtensions'; -import {CodeLensRegistry, ICodeLensData, getCodeLensData} from '../common/codelens'; +import {ICodeLensData, getCodeLensData} from '../common/codelens'; class CodeLensViewZone implements editorBrowser.IViewZone { diff --git a/src/vs/editor/contrib/codelens/common/codelens.ts b/src/vs/editor/contrib/codelens/common/codelens.ts index 1b9540b04f2..d164353183e 100644 --- a/src/vs/editor/contrib/codelens/common/codelens.ts +++ b/src/vs/editor/contrib/codelens/common/codelens.ts @@ -10,12 +10,9 @@ import URI from 'vs/base/common/uri'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {ICodeLensSupport, ICodeLensSymbol} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; +import {CodeLensRegistry, ICodeLensSupport, ICodeLensSymbol} from 'vs/editor/common/modes'; import {IModelService} from 'vs/editor/common/services/modelService'; -export const CodeLensRegistry = new LanguageFeatureRegistry('codeLensSupport'); - export interface ICodeLensData { symbol: ICodeLensSymbol; support: ICodeLensSupport; diff --git a/src/vs/editor/contrib/find/common/findController.ts b/src/vs/editor/contrib/find/common/findController.ts index 9accc038c34..e666dd89601 100644 --- a/src/vs/editor/contrib/find/common/findController.ts +++ b/src/vs/editor/contrib/find/common/findController.ts @@ -17,7 +17,7 @@ import * as editorCommon from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; import {FIND_IDS, FindModelBoundToEditorModel} from 'vs/editor/contrib/find/common/findModel'; import {FindReplaceState, FindReplaceStateChangedEvent, INewFindReplaceState} from 'vs/editor/contrib/find/common/findState'; -import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; +import {OccurrencesRegistry} from 'vs/editor/common/modes'; import {RunOnceScheduler} from 'vs/base/common/async'; export enum FindStartFocusAction { diff --git a/src/vs/editor/contrib/format/common/format.ts b/src/vs/editor/contrib/format/common/format.ts index ad253764ed9..25897c2c792 100644 --- a/src/vs/editor/contrib/format/common/format.ts +++ b/src/vs/editor/contrib/format/common/format.ts @@ -11,15 +11,9 @@ import {TPromise} from 'vs/base/common/winjs.base'; import {Range} from 'vs/editor/common/core/range'; import {IModel, IPosition, IRange, ISingleEditOperation} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IFormattingOptions, IFormattingSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; +import {FormatRegistry, FormatOnTypeRegistry, IFormattingOptions} from 'vs/editor/common/modes'; import {IModelService} from 'vs/editor/common/services/modelService'; -export const FormatRegistry = new LanguageFeatureRegistry('formattingSupport'); -export const FormatOnTypeRegistry = new LanguageFeatureRegistry('formattingSupport'); - -export {IFormattingSupport}; - export function formatRange(model: IModel, range: IRange, options: IFormattingOptions): TPromise { const [support] = FormatRegistry.ordered(model) .filter(s => typeof s.formatRange === 'function'); diff --git a/src/vs/editor/contrib/format/common/formatActions.ts b/src/vs/editor/contrib/format/common/formatActions.ts index c30475f1e01..0c9abe804e0 100644 --- a/src/vs/editor/contrib/format/common/formatActions.ts +++ b/src/vs/editor/contrib/format/common/formatActions.ts @@ -13,7 +13,8 @@ import {EditorAction} from 'vs/editor/common/editorAction'; import {Behaviour} from 'vs/editor/common/editorActionEnablement'; import * as editorCommon from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; -import {FormatOnTypeRegistry, FormatRegistry, formatAfterKeystroke, formatDocument, formatRange} from '../common/format'; +import {FormatOnTypeRegistry, FormatRegistry} from 'vs/editor/common/modes'; +import {formatAfterKeystroke, formatDocument, formatRange} from '../common/format'; import {EditOperationsCommand} from './formatCommand'; interface IFormatOnTypeResult { diff --git a/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts b/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts index 9f0d4ae43bf..ff822618caa 100644 --- a/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts +++ b/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts @@ -28,11 +28,11 @@ import {EditorAction} from 'vs/editor/common/editorAction'; import {Behaviour} from 'vs/editor/common/editorActionEnablement'; import * as editorCommon from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; -import {IReference} from 'vs/editor/common/modes'; +import {IReference, DeclarationRegistry} from 'vs/editor/common/modes'; import {tokenizeToHtmlContent} from 'vs/editor/common/modes/textToHtmlTokenizer'; import {ICodeEditor, IEditorMouseEvent, IMouseTarget} from 'vs/editor/browser/editorBrowser'; import {EditorBrowserRegistry} from 'vs/editor/browser/editorBrowserExtensions'; -import {DeclarationRegistry, getDeclarationsAtPosition} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; +import {getDeclarationsAtPosition} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; import {FindReferencesController} from 'vs/editor/contrib/referenceSearch/browser/referenceSearch'; const DEFAULT_BEHAVIOR = Behaviour.WidgetFocus | Behaviour.ShowInContextMenu | Behaviour.UpdateOnCursorPositionChange; diff --git a/src/vs/editor/contrib/goToDeclaration/common/goToDeclaration.ts b/src/vs/editor/contrib/goToDeclaration/common/goToDeclaration.ts index d8159ea7262..e6fa774c9e6 100644 --- a/src/vs/editor/contrib/goToDeclaration/common/goToDeclaration.ts +++ b/src/vs/editor/contrib/goToDeclaration/common/goToDeclaration.ts @@ -9,11 +9,8 @@ import {onUnexpectedError} from 'vs/base/common/errors'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel, IPosition} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IDeclarationSupport} from 'vs/editor/common/modes'; +import {DeclarationRegistry} from 'vs/editor/common/modes'; import {IReference} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; - -export const DeclarationRegistry = new LanguageFeatureRegistry('declarationSupport'); export function getDeclarationsAtPosition(model: IModel, position: IPosition): TPromise { diff --git a/src/vs/editor/contrib/hover/browser/modesContentHover.ts b/src/vs/editor/contrib/hover/browser/modesContentHover.ts index b9126d5aa98..a136bda5ef9 100644 --- a/src/vs/editor/contrib/hover/browser/modesContentHover.ts +++ b/src/vs/editor/contrib/hover/browser/modesContentHover.ts @@ -14,10 +14,10 @@ import {IKeybindingService} from 'vs/platform/keybinding/common/keybindingServic import {KeybindingsRegistry} from 'vs/platform/keybinding/common/keybindingsRegistry'; import {Range} from 'vs/editor/common/core/range'; import {IEditorRange, IRange} from 'vs/editor/common/editorCommon'; -import {IComputeExtraInfoResult, IMode} from 'vs/editor/common/modes'; +import {ExtraInfoRegistry, IComputeExtraInfoResult, IMode} from 'vs/editor/common/modes'; import {tokenizeToString} from 'vs/editor/common/modes/textToHtmlTokenizer'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; -import {ExtraInfoRegistry, getExtraInfoAtPosition} from '../common/hover'; +import {getExtraInfoAtPosition} from '../common/hover'; import {HoverOperation, IHoverComputer} from './hoverOperation'; import {ContentHoverWidget} from './hoverWidgets'; diff --git a/src/vs/editor/contrib/hover/common/hover.ts b/src/vs/editor/contrib/hover/common/hover.ts index b6a3508b7d0..a6c4f2fa6a4 100644 --- a/src/vs/editor/contrib/hover/common/hover.ts +++ b/src/vs/editor/contrib/hover/common/hover.ts @@ -10,10 +10,7 @@ import {onUnexpectedError} from 'vs/base/common/errors'; import {TPromise} from 'vs/base/common/winjs.base'; import {IModel, IPosition} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IComputeExtraInfoResult, IExtraInfoSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; - -export const ExtraInfoRegistry = new LanguageFeatureRegistry('extraInfoSupport'); +import {IComputeExtraInfoResult, ExtraInfoRegistry} from 'vs/editor/common/modes'; export function getExtraInfoAtPosition(model: IModel, position: IPosition): TPromise { diff --git a/src/vs/editor/contrib/quickFix/browser/quickFix.ts b/src/vs/editor/contrib/quickFix/browser/quickFix.ts index 9c48d00633a..7dc158d0c49 100644 --- a/src/vs/editor/contrib/quickFix/browser/quickFix.ts +++ b/src/vs/editor/contrib/quickFix/browser/quickFix.ts @@ -20,8 +20,9 @@ import {ICommonCodeEditor, IEditorActionDescriptorData, IEditorContribution, IRa import {CommonEditorRegistry, ContextKey, EditorActionDescriptor} from 'vs/editor/common/editorCommonExtensions'; import {bulkEdit} from 'vs/editor/common/services/bulkEdit'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; +import {QuickFixRegistry} from 'vs/editor/common/modes'; import {EditorBrowserRegistry} from 'vs/editor/browser/editorBrowserExtensions'; -import {IQuickFix2, QuickFixRegistry} from '../common/quickFix'; +import {IQuickFix2} from '../common/quickFix'; import {QuickFixModel} from './quickFixModel'; import {QuickFixSelectionWidget} from './quickFixSelectionWidget'; diff --git a/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts b/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts index ad421772c46..3373b4f23f5 100644 --- a/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts +++ b/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts @@ -16,7 +16,8 @@ import {IMarker, IMarkerService} from 'vs/platform/markers/common/markers'; import {Range} from 'vs/editor/common/core/range'; import {EventType, ICursorPositionChangedEvent, IModeSupportChangedEvent, IPosition, IRange} from 'vs/editor/common/editorCommon'; import {ICodeEditor} from 'vs/editor/browser/editorBrowser'; -import {IQuickFix2, QuickFixRegistry, getQuickFixes} from '../common/quickFix'; +import {QuickFixRegistry} from 'vs/editor/common/modes'; +import {IQuickFix2, getQuickFixes} from '../common/quickFix'; import {LightBulpWidget} from './lightBulpWidget'; enum QuickFixSuggestState { diff --git a/src/vs/editor/contrib/quickFix/common/quickFix.ts b/src/vs/editor/contrib/quickFix/common/quickFix.ts index c5246935800..ed25fd20b55 100644 --- a/src/vs/editor/contrib/quickFix/common/quickFix.ts +++ b/src/vs/editor/contrib/quickFix/common/quickFix.ts @@ -11,12 +11,9 @@ import {TPromise} from 'vs/base/common/winjs.base'; import {Range} from 'vs/editor/common/core/range'; import {IModel, IRange} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IQuickFix, IQuickFixSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; +import {QuickFixRegistry, IQuickFix, IQuickFixSupport} from 'vs/editor/common/modes'; import {IModelService} from 'vs/editor/common/services/modelService'; -export const QuickFixRegistry = new LanguageFeatureRegistry('quickFixSupport'); - export interface IQuickFix2 extends IQuickFix { support: IQuickFixSupport; id: string; diff --git a/src/vs/editor/contrib/quickOpen/common/quickOpen.ts b/src/vs/editor/contrib/quickOpen/common/quickOpen.ts index fff26f4cc0c..4fe14698ab5 100644 --- a/src/vs/editor/contrib/quickOpen/common/quickOpen.ts +++ b/src/vs/editor/contrib/quickOpen/common/quickOpen.ts @@ -11,18 +11,9 @@ import {TPromise} from 'vs/base/common/winjs.base'; import {Range} from 'vs/editor/common/core/range'; import {IModel} from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IOutlineEntry, IOutlineSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; +import {IOutlineEntry, OutlineRegistry} from 'vs/editor/common/modes'; import {IModelService} from 'vs/editor/common/services/modelService'; -const OutlineRegistry = new LanguageFeatureRegistry('outlineSupport'); - -export { - OutlineRegistry, - IOutlineEntry, - IOutlineSupport -} - export interface IOutline { entries: IOutlineEntry[]; outlineGroupLabel: { [n: string]: string; }; diff --git a/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts b/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts index 51569155742..7c2a49e9d1e 100644 --- a/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts +++ b/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts @@ -10,10 +10,7 @@ import {TPromise} from 'vs/base/common/winjs.base'; import {Range} from 'vs/editor/common/core/range'; import * as editorCommon from 'vs/editor/common/editorCommon'; import {CommonEditorRegistry} from 'vs/editor/common/editorCommonExtensions'; -import {IOccurence, IOccurrencesSupport} from 'vs/editor/common/modes'; -import LanguageFeatureRegistry from 'vs/editor/common/modes/languageFeatureRegistry'; - -export const OccurrencesRegistry = new LanguageFeatureRegistry('occurrencesSupport'); +import {IOccurence, OccurrencesRegistry} from 'vs/editor/common/modes'; export function getOccurrencesAtPosition(model: editorCommon.IModel, position: editorCommon.IPosition):TPromise { diff --git a/src/vs/languages/typescript/common/languageFeatures.ts b/src/vs/languages/typescript/common/languageFeatures.ts index 826bd032870..477a8022226 100644 --- a/src/vs/languages/typescript/common/languageFeatures.ts +++ b/src/vs/languages/typescript/common/languageFeatures.ts @@ -13,11 +13,6 @@ import * as modes from 'vs/editor/common/modes'; import matches from 'vs/editor/common/modes/languageSelector'; import {IMarkerService, IMarkerData} from 'vs/platform/markers/common/markers'; import {IModelService} from 'vs/editor/common/services/modelService'; -import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; -import {ExtraInfoRegistry} from 'vs/editor/contrib/hover/common/hover'; -import {DeclarationRegistry} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; -import {OutlineRegistry} from 'vs/editor/contrib/quickOpen/common/quickOpen'; -import {FormatRegistry, FormatOnTypeRegistry} from 'vs/editor/contrib/format/common/format'; import {TypeScriptWorkerProtocol, LanguageServiceDefaults} from 'vs/languages/typescript/common/typescript'; import * as ts from 'vs/languages/typescript/common/lib/typescriptServices'; @@ -27,13 +22,13 @@ export function register(modelService: IModelService, markerService: IMarkerServ const disposables: lifecycle.IDisposable[] = []; disposables.push(modes.SuggestRegistry.register(selector, new SuggestAdapter(modelService, worker))); disposables.push(modes.ParameterHintsRegistry.register(selector, new ParameterHintsAdapter(modelService, worker))); - disposables.push(ExtraInfoRegistry.register(selector, new QuickInfoAdapter(modelService, worker))); - disposables.push(OccurrencesRegistry.register(selector, new OccurrencesAdapter(modelService, worker))); - disposables.push(DeclarationRegistry.register(selector, new DeclarationAdapter(modelService, worker))); + disposables.push(modes.ExtraInfoRegistry.register(selector, new QuickInfoAdapter(modelService, worker))); + disposables.push(modes.OccurrencesRegistry.register(selector, new OccurrencesAdapter(modelService, worker))); + disposables.push(modes.DeclarationRegistry.register(selector, new DeclarationAdapter(modelService, worker))); disposables.push(modes.ReferenceSearchRegistry.register(selector, new ReferenceAdapter(modelService, worker))); - disposables.push(OutlineRegistry.register(selector, new OutlineAdapter(modelService, worker))); - disposables.push(FormatRegistry.register(selector, new FormatAdapter(modelService, worker))); - disposables.push(FormatOnTypeRegistry.register(selector, new FormatAdapter(modelService, worker))); + disposables.push(modes.OutlineRegistry.register(selector, new OutlineAdapter(modelService, worker))); + disposables.push(modes.FormatRegistry.register(selector, new FormatAdapter(modelService, worker))); + disposables.push(modes.FormatOnTypeRegistry.register(selector, new FormatAdapter(modelService, worker))); disposables.push(new DiagnostcsAdapter(defaults, selector, markerService, modelService, worker)); return lifecycle.combinedDisposable(disposables); diff --git a/src/vs/workbench/api/node/extHostLanguageFeatures.ts b/src/vs/workbench/api/node/extHostLanguageFeatures.ts index 789a441c760..3d9c727ffea 100644 --- a/src/vs/workbench/api/node/extHostLanguageFeatures.ts +++ b/src/vs/workbench/api/node/extHostLanguageFeatures.ts @@ -16,19 +16,12 @@ import * as modes from 'vs/editor/common/modes'; import {ExtHostModelService} from 'vs/workbench/api/node/extHostDocuments'; import {ExtHostCommands} from 'vs/workbench/api/node/extHostCommands'; import {ExtHostDiagnostics} from 'vs/workbench/api/node/extHostDiagnostics'; -import {DeclarationRegistry} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; -import {ExtraInfoRegistry} from 'vs/editor/contrib/hover/common/hover'; -import {OccurrencesRegistry} from 'vs/editor/contrib/wordHighlighter/common/wordHighlighter'; -import {QuickFixRegistry} from 'vs/editor/contrib/quickFix/common/quickFix'; -import {OutlineRegistry, IOutlineEntry, IOutlineSupport} from 'vs/editor/contrib/quickOpen/common/quickOpen'; import {NavigateTypesSupportRegistry, INavigateTypesSupport, ITypeBearing} from 'vs/workbench/parts/search/common/search'; -import {FormatRegistry, FormatOnTypeRegistry} from 'vs/editor/contrib/format/common/format'; -import {CodeLensRegistry} from 'vs/editor/contrib/codelens/common/codelens'; import {asWinJsPromise, ShallowCancelThenPromise} from 'vs/base/common/async'; // --- adapter -class OutlineAdapter implements IOutlineSupport { +class OutlineAdapter implements modes.IOutlineSupport { private _documents: ExtHostModelService; private _provider: vscode.DocumentSymbolProvider; @@ -38,7 +31,7 @@ class OutlineAdapter implements IOutlineSupport { this._provider = provider; } - getOutline(resource: URI): TPromise { + getOutline(resource: URI): TPromise { let doc = this._documents.getDocumentData(resource).document; return asWinJsPromise(token => this._provider.provideDocumentSymbols(doc, token)).then(value => { if (Array.isArray(value)) { @@ -673,7 +666,7 @@ export class ExtHostLanguageFeatures { return this._createDisposable(handle); } - $getOutline(handle: number, resource: URI): TPromise { + $getOutline(handle: number, resource: URI): TPromise { return this._withAdapter(handle, OutlineAdapter, adapter => adapter.getOutline(resource)); } @@ -877,8 +870,8 @@ export class MainThreadLanguageFeatures { // --- outline $registerOutlineSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = OutlineRegistry.register(selector, { - getOutline: (resource: URI): TPromise => { + this._registrations[handle] = modes.OutlineRegistry.register(selector, { + getOutline: (resource: URI): TPromise => { return this._proxy.$getOutline(handle, resource); } }); @@ -888,7 +881,7 @@ export class MainThreadLanguageFeatures { // --- code lens $registerCodeLensSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = CodeLensRegistry.register(selector, { + this._registrations[handle] = modes.CodeLensRegistry.register(selector, { findCodeLensSymbols: (resource: URI): TPromise => { return this._proxy.$findCodeLensSymbols(handle, resource); }, @@ -902,7 +895,7 @@ export class MainThreadLanguageFeatures { // --- declaration $registerDeclaractionSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = DeclarationRegistry.register(selector, { + this._registrations[handle] = modes.DeclarationRegistry.register(selector, { canFindDeclaration() { return true; }, @@ -916,7 +909,7 @@ export class MainThreadLanguageFeatures { // --- extra info $registerExtraInfoSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = ExtraInfoRegistry.register(selector, { + this._registrations[handle] = modes.ExtraInfoRegistry.register(selector, { computeInfo: (resource: URI, position: IPosition): TPromise => { return this._proxy.$computeInfo(handle, resource, position); } @@ -927,7 +920,7 @@ export class MainThreadLanguageFeatures { // --- occurrences $registerOccurrencesSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = OccurrencesRegistry.register(selector, { + this._registrations[handle] = modes.OccurrencesRegistry.register(selector, { findOccurrences: (resource: URI, position: IPosition): TPromise => { return this._proxy.$findOccurrences(handle, resource, position); } @@ -952,7 +945,7 @@ export class MainThreadLanguageFeatures { // --- quick fix $registerQuickFixSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = QuickFixRegistry.register(selector, { + this._registrations[handle] = modes.QuickFixRegistry.register(selector, { getQuickFixes: (resource: URI, range: IRange): TPromise => { return this._proxy.$getQuickFixes(handle, resource, range); }, @@ -966,7 +959,7 @@ export class MainThreadLanguageFeatures { // --- formatting $registerDocumentFormattingSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = FormatRegistry.register(selector, { + this._registrations[handle] = modes.FormatRegistry.register(selector, { formatDocument: (resource: URI, options: modes.IFormattingOptions): TPromise => { return this._proxy.$formatDocument(handle, resource, options); } @@ -975,7 +968,7 @@ export class MainThreadLanguageFeatures { } $registerRangeFormattingSupport(handle: number, selector: vscode.DocumentSelector): TPromise { - this._registrations[handle] = FormatRegistry.register(selector, { + this._registrations[handle] = modes.FormatRegistry.register(selector, { formatRange: (resource: URI, range: IRange, options: modes.IFormattingOptions): TPromise => { return this._proxy.$formatRange(handle, resource, range, options); } @@ -984,7 +977,7 @@ export class MainThreadLanguageFeatures { } $registerOnTypeFormattingSupport(handle: number, selector: vscode.DocumentSelector, autoFormatTriggerCharacters: string[]): TPromise { - this._registrations[handle] = FormatOnTypeRegistry.register(selector, { + this._registrations[handle] = modes.FormatOnTypeRegistry.register(selector, { autoFormatTriggerCharacters, diff --git a/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts b/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts index 1bbd8f71977..9fc0fd686c2 100644 --- a/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts +++ b/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts @@ -24,7 +24,8 @@ import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/edito import {IQuickOpenService} from 'vs/workbench/services/quickopen/common/quickOpenService'; import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace'; import {Position} from 'vs/platform/editor/common/editor'; -import {OutlineRegistry, getOutlineEntries} from 'vs/editor/contrib/quickOpen/common/quickOpen'; +import {getOutlineEntries} from 'vs/editor/contrib/quickOpen/common/quickOpen'; +import {OutlineRegistry} from 'vs/editor/common/modes'; export const GOTO_SYMBOL_PREFIX = '@'; export const SCOPE_PREFIX = ':'; diff --git a/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts b/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts index a7d072af86a..9f341c578ab 100644 --- a/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts +++ b/src/vs/workbench/test/node/api/extHostLanguageFeatures.test.ts @@ -19,7 +19,8 @@ import {IThreadService} from 'vs/platform/thread/common/thread'; import {ExtHostLanguageFeatures, MainThreadLanguageFeatures} from 'vs/workbench/api/node/extHostLanguageFeatures'; import {ExtHostCommands, MainThreadCommands} from 'vs/workbench/api/node/extHostCommands'; import {ExtHostModelService} from 'vs/workbench/api/node/extHostDocuments'; -import {OutlineRegistry, getOutlineEntries} from 'vs/editor/contrib/quickOpen/common/quickOpen'; +import {getOutlineEntries} from 'vs/editor/contrib/quickOpen/common/quickOpen'; +import {OutlineRegistry} from 'vs/editor/common/modes'; import {getCodeLensData} from 'vs/editor/contrib/codelens/common/codelens'; import {getDeclarationsAtPosition} from 'vs/editor/contrib/goToDeclaration/common/goToDeclaration'; import {getExtraInfoAtPosition} from 'vs/editor/contrib/hover/common/hover'; From 5c850a147bdf96a37bfa248cb511087d6fb2731e Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 14 Apr 2016 08:58:52 +0200 Subject: [PATCH 095/117] get rid of win10 focus hack --- src/vs/workbench/electron-main/window.ts | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/vs/workbench/electron-main/window.ts b/src/vs/workbench/electron-main/window.ts index 8e5716d5342..4b82d32be95 100644 --- a/src/vs/workbench/electron-main/window.ts +++ b/src/vs/workbench/electron-main/window.ts @@ -6,7 +6,6 @@ 'use strict'; import path = require('path'); -import os = require('os'); import {shell, screen, BrowserWindow} from 'electron'; @@ -236,20 +235,11 @@ export class VSCodeWindow { return; } - // Windows 10: https://github.com/Microsoft/vscode/issues/929 - if (platform.isWindows && os.release() && os.release().indexOf('10.') === 0 && !this._win.isFocused()) { - this._win.minimize(); - this._win.focus(); + if (this._win.isMinimized()) { + this._win.restore(); } - // Mac / Linux / Windows 7 & 8 - else { - if (this._win.isMinimized()) { - this._win.restore(); - } - - this._win.focus(); - } + this._win.focus(); } public get lastFocusTime(): number { From 570ec57f907706774abd52dbdf1d1fd546a0378b Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 09:23:02 +0200 Subject: [PATCH 096/117] mental - use binary insertion over map --- src/vs/base/common/arrays.ts | 2 +- .../telemetry/common/errorTelemetry.ts | 35 ++++++++++++++----- 2 files changed, 27 insertions(+), 10 deletions(-) diff --git a/src/vs/base/common/arrays.ts b/src/vs/base/common/arrays.ts index b068d41dba8..774bb2ff3d5 100644 --- a/src/vs/base/common/arrays.ts +++ b/src/vs/base/common/arrays.ts @@ -40,7 +40,7 @@ export function equals(one: T[], other: T[], itemEquals: (a: T, b: T) => bool return true; } -export function binarySearch(array: any[], key: any, comparator: (op1: any, op2: any) => number): number { +export function binarySearch(array: T[], key: T, comparator: (op1: T, op2: T) => number): number { let low = 0, high = array.length - 1; diff --git a/src/vs/platform/telemetry/common/errorTelemetry.ts b/src/vs/platform/telemetry/common/errorTelemetry.ts index f1e85840c02..adfe8948f67 100644 --- a/src/vs/platform/telemetry/common/errorTelemetry.ts +++ b/src/vs/platform/telemetry/common/errorTelemetry.ts @@ -5,6 +5,7 @@ 'use strict'; +import {binarySearch} from 'vs/base/common/arrays'; import {globals} from 'vs/base/common/platform'; import {ITelemetryService} from 'vs/platform/telemetry/common/telemetry'; import {IDisposable, toDisposable, dispose} from 'vs/base/common/lifecycle'; @@ -18,6 +19,19 @@ interface ErrorEvent { line?: number; column?: number; error?: { name: string; message: string; }; + + count?: number; +} + +namespace ErrorEvent { + export function compare(a: ErrorEvent, b: ErrorEvent) { + if (a.stack < b.stack) { + return -1; + } else if (a.stack > b.stack) { + return 1; + } + return 0; + } } export default class ErrorTelemetry { @@ -25,7 +39,7 @@ export default class ErrorTelemetry { private _telemetryService: ITelemetryService; private _flushDelay: number; private _flushHandle = -1; - private _buffer: { [stack: string]: any } = Object.create(null); + private _buffer: ErrorEvent[] = []; private _disposables: IDisposable[] = []; constructor(telemetryService: ITelemetryService, flushDelay) { @@ -107,13 +121,16 @@ export default class ErrorTelemetry { this._enqueue(data); } - private _enqueue(e: any): void { - if (this._buffer[e.stack]) { - this._buffer[e.stack].count++; - } else { + private _enqueue(e: ErrorEvent): void { + + const idx = binarySearch(this._buffer, e, ErrorEvent.compare); + if (idx < 0) { e.count = 1; - this._buffer[e.stack] = e; + this._buffer.splice(~idx, 0, e); + } else { + this._buffer[idx].count += 1; } + if (this._flushHandle === -1) { this._flushHandle = setTimeout(() => { this._flushBuffer(); @@ -123,9 +140,9 @@ export default class ErrorTelemetry { } private _flushBuffer(): void { - for (let stack in this._buffer) { - this._telemetryService.publicLog('UnhandledError', this._buffer[stack]); + for (let error of this._buffer) { + this._telemetryService.publicLog('UnhandledError', error); } - this._buffer = Object.create(null); + this._buffer.length = 0; } } From 7e0290332fe29a5ce59e9b1dc2b8e6771b9bc23f Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 14 Apr 2016 09:39:13 +0200 Subject: [PATCH 097/117] workaround issue with background color on mac --- src/vs/workbench/electron-main/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/electron-main/window.ts b/src/vs/workbench/electron-main/window.ts index 4b82d32be95..20b7c7d96a5 100644 --- a/src/vs/workbench/electron-main/window.ts +++ b/src/vs/workbench/electron-main/window.ts @@ -175,7 +175,7 @@ export class VSCodeWindow { height: this.windowState.height, x: this.windowState.x, y: this.windowState.y, - backgroundColor: usesLightTheme ? '#FFFFFF' : '#1E1E1E', + backgroundColor: usesLightTheme ? '#FFFFFF' : platform.isMacintosh ? '#171717' : '#1E1E1E', // https://github.com/electron/electron/issues/5150 minWidth: VSCodeWindow.MIN_WIDTH, minHeight: VSCodeWindow.MIN_HEIGHT, show: showDirectly && this.currentWindowMode !== WindowMode.Maximized, // in case we are maximized, only show later after the call to maximize (see below) From 8ec6b49ca509ad4ae66ac7162f7a6fe79a1a20b8 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 09:45:48 +0200 Subject: [PATCH 098/117] ts - make sure to return models and extra libs in host logic --- src/vs/languages/typescript/common/worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/languages/typescript/common/worker.ts b/src/vs/languages/typescript/common/worker.ts index 160d1bca006..7f774d5e000 100644 --- a/src/vs/languages/typescript/common/worker.ts +++ b/src/vs/languages/typescript/common/worker.ts @@ -54,7 +54,7 @@ class TypeScriptWorker extends TypeScriptWorkerProtocol implements ts.LanguageSe } getScriptFileNames(): string[] { - return Object.keys(this._models); + return Object.keys(this._models).concat(Object.keys(this._extraLibs)); } getScriptVersion(fileName: string): string { From 70a33d4eb8de3b2d49d2ca396c85fee7a1562730 Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 14 Apr 2016 10:47:55 +0200 Subject: [PATCH 099/117] output: polish refactoring based on ben's feedback --- .../electron-browser/extensionsWidgets.ts | 2 +- .../parts/output/browser/outputActions.ts | 2 +- .../workbench/parts/output/common/output.ts | 12 ++++---- .../parts/output/common/outputEditorInput.ts | 8 ++++-- .../parts/output/common/outputServices.ts | 4 ++- .../electron-browser/task.contribution.ts | 20 ++++++------- .../parts/tasks/node/processRunnerSystem.ts | 28 +++++++++---------- 7 files changed, 39 insertions(+), 37 deletions(-) diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts index 31a13b6b27d..0cb6789a924 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts @@ -117,7 +117,7 @@ export class ExtensionsStatusbarItem implements IStatusbarItem { const outputChannel = this.outputService.getOutputChannel(ExtensionsChannelId); outputChannel.append(message); - this.outputService.getOutputChannel(ExtensionsChannelId).show(true); + outputChannel.show(true); }); }); } diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index c942f13c46a..e7ac36bc815 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -122,7 +122,7 @@ export class SwitchOutputActionItem extends SelectActionItem { } private static getChannels(outputService: IOutputService): string[] { - const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.displayName); + const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.label); return contributedChannels.sort(); // sort by name } } diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index fd0d9d30671..cc7e4b42506 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -85,7 +85,7 @@ export interface IOutputChannel { /** * Returns the received output content. */ - getContent(): string; + output: string; /** * Appends output to the channel. @@ -113,23 +113,23 @@ export interface IOutputChannelRegistry { /** * Returns the list of channels known to the output world. */ - getChannels(): { id: string, displayName: string}[]; + getChannels(): { id: string, label: string}[]; } class OutputChannelRegistry implements IOutputChannelRegistry { - private channels: { id: string, displayName: string }[]; + private channels: { id: string, label: string }[]; constructor() { this.channels = []; } - public registerChannel(id: string, displayName: string): void { + public registerChannel(id: string, label: string): void { if (this.channels.every(channel => channel.id !== id)) { - this.channels.push({ id, displayName }); + this.channels.push({ id, label }); } } - public getChannels(): { id: string, displayName: string}[] { + public getChannels(): { id: string, label: string}[] { return this.channels; } } diff --git a/src/vs/workbench/parts/output/common/outputEditorInput.ts b/src/vs/workbench/parts/output/common/outputEditorInput.ts index 6719cc89aff..8b71af4f805 100644 --- a/src/vs/workbench/parts/output/common/outputEditorInput.ts +++ b/src/vs/workbench/parts/output/common/outputEditorInput.ts @@ -11,7 +11,7 @@ import {TPromise} from 'vs/base/common/winjs.base'; import {RunOnceScheduler} from 'vs/base/common/async'; import {EditorModel} from 'vs/workbench/common/editor'; import {StringEditorInput} from 'vs/workbench/common/editor/stringEditorInput'; -import {OUTPUT_EDITOR_INPUT_ID, OUTPUT_PANEL_ID, IOutputEvent, OUTPUT_MIME, IOutputService, MAX_OUTPUT_LENGTH} from 'vs/workbench/parts/output/common/output'; +import {OUTPUT_EDITOR_INPUT_ID, OUTPUT_PANEL_ID, IOutputEvent, OUTPUT_MIME, IOutputService, MAX_OUTPUT_LENGTH, IOutputChannel} from 'vs/workbench/parts/output/common/output'; import {OutputPanel} from 'vs/workbench/parts/output/browser/outputPanel'; import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation'; import {IEventService} from 'vs/platform/event/common/event'; @@ -31,6 +31,7 @@ export class OutputEditorInput extends StringEditorInput { private bufferedOutput: string; private toDispose: lifecycle.IDisposable[]; private appendOutputScheduler: RunOnceScheduler; + private outputChannel: IOutputChannel; public static getInstances(): OutputEditorInput[] { return Object.keys(OutputEditorInput.instances).map((key) => OutputEditorInput.instances[key]); @@ -56,6 +57,7 @@ export class OutputEditorInput extends StringEditorInput { super(nls.localize('output', "Output"), channelId ? nls.localize('outputChannel', "for '{0}'", channelId) : '', '', OUTPUT_MIME, true, instantiationService); this.channelId = channelId; + this.outputChannel = this.outputService.getOutputChannel(channelId); this.bufferedOutput = ''; this.toDispose = []; this.toDispose.push(this.outputService.onOutput(this.onOutputReceived, this)); @@ -75,7 +77,7 @@ export class OutputEditorInput extends StringEditorInput { private appendOutput(): void { if (this.value.length + this.bufferedOutput.length > MAX_OUTPUT_LENGTH) { - this.setValue(this.outputService.getOutputChannel(this.channelId).getContent()); + this.setValue(this.outputChannel.output); } else { this.append(this.bufferedOutput); } @@ -118,7 +120,7 @@ export class OutputEditorInput extends StringEditorInput { return model; } - this.setValue(this.outputService.getOutputChannel(this.channelId).getContent()); + this.setValue(this.outputChannel.output); this.outputSet = true; return model; diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 68d1c3ba386..b3a3768a7ec 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -62,7 +62,9 @@ export class OutputService implements IOutputService { public getOutputChannel(id: string): IOutputChannel { return { - getContent: () => this.getOutput(id), + get output() { + return this.getOutput(id); + }, append: (output: string) => this.append(id, output), show: (preserveFocus: boolean) => this.showOutput(id, preserveFocus), clear: () => this.clearOutput(id) diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 9a851204cc5..333ee0697f3 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -58,7 +58,7 @@ import { IWorkspaceContextService } from 'vs/workbench/services/workspace/common import { SystemVariables } from 'vs/workbench/parts/lib/node/systemVariables'; import { ITextFileService, EventType } from 'vs/workbench/parts/files/common/files'; -import { IOutputService, IOutputChannelRegistry, Extensions as OutputExt } from 'vs/workbench/parts/output/common/output'; +import { IOutputService, IOutputChannelRegistry, Extensions as OutputExt, IOutputChannel } from 'vs/workbench/parts/output/common/output'; import { ITaskSystem, ITaskSummary, ITaskRunResult, TaskError, TaskErrors, TaskConfiguration, TaskDescription, TaskSystemEvents } from 'vs/workbench/parts/tasks/common/taskSystem'; import { ITaskService, TaskServiceEvents } from 'vs/workbench/parts/tasks/common/taskService'; @@ -182,8 +182,8 @@ class ConfigureTaskRunnerAction extends Action { } let contentPromise: TPromise; if (selection.autoDetect) { - this.outputService.getOutputChannel(TaskService.OutputChannelId).show(); const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); + outputChannel.show(); outputChannel.append(nls.localize('ConfigureTaskRunnerAction.autoDetecting', 'Auto detecting tasks for {0}', selection.id) + '\n'); let detector = new ProcessRunnerDetector(this.fileService, this.contextService, new SystemVariables(this.editorService, this.contextService)); contentPromise = detector.detect(false, selection.id).then((value) => { @@ -288,7 +288,7 @@ class ShowLogAction extends AbstractTaskAction { } public run(): Promise { - return this.outputService.getOutputChannel(TaskService.OutputChannelId).show(); + return this.outputService.getOutputChannel(TaskService.OutputChannelId).show(); } } @@ -475,6 +475,7 @@ class TaskService extends EventEmitter implements ITaskService { private _taskSystem: ITaskSystem; private taskSystemListeners: ListenerUnbind[]; private clearTaskSystemPromise: boolean; + private outputChannel: IOutputChannel; private fileChangesListener: ListenerUnbind; @@ -505,6 +506,7 @@ class TaskService extends EventEmitter implements ITaskService { this.taskSystemListeners = []; this.clearTaskSystemPromise = false; + this.outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); this.configurationService.addListener(ConfigurationServiceEventTypes.UPDATED, () => { this.emit(TaskServiceEvents.ConfigChanged); if (this._taskSystem && this._taskSystem.isActiveSync()) { @@ -546,9 +548,8 @@ class TaskService extends EventEmitter implements ITaskService { } } if (isAffected) { - const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); - outputChannel.append(nls.localize('TaskSystem.invalidTaskJson', 'Error: The content of the tasks.json file has syntax errors. Please correct them before executing a task.\n')); - this.outputService.getOutputChannel(TaskService.OutputChannelId).show(true); + this.outputChannel.append(nls.localize('TaskSystem.invalidTaskJson', 'Error: The content of the tasks.json file has syntax errors. Please correct them before executing a task.\n')); + this.outputChannel.show(true); return TPromise.wrapError({}); } } @@ -620,10 +621,9 @@ class TaskService extends EventEmitter implements ITaskService { if (stderr && stderr.length > 0) { stderr.forEach((line) => { result = false; - const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); - outputChannel.append(line + '\n'); + this.outputChannel.append(line + '\n'); }); - this.outputService.getOutputChannel(TaskService.OutputChannelId).show(true); + this.outputChannel.show(true); } return result; } @@ -787,7 +787,7 @@ class TaskService extends EventEmitter implements ITaskService { this.messageService.show(Severity.Error, nls.localize('TaskSystem.unknownError', 'An error has occurred while running a task. See task log for details.')); } if (showOutput) { - this.outputService.getOutputChannel(TaskService.OutputChannelId).show(true); + this.outputChannel.show(true); } } } diff --git a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts index 12279d7c8c1..e99ad34f21d 100644 --- a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts +++ b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts @@ -17,7 +17,7 @@ import { EventEmitter, ListenerUnbind } from 'vs/base/common/eventEmitter'; import { TerminateResponse, SuccessData, ErrorData } from 'vs/base/common/processes'; import { LineProcess, LineData } from 'vs/base/node/processes'; -import { IOutputService } from 'vs/workbench/parts/output/common/output'; +import { IOutputService, IOutputChannel } from 'vs/workbench/parts/output/common/output'; import { SystemVariables } from 'vs/workbench/parts/lib/node/systemVariables'; import { IMarkerService } from 'vs/platform/markers/common/markers'; @@ -46,6 +46,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { private defaultBuildTaskIdentifier: string; private defaultTestTaskIdentifier: string; private configuration: TaskRunnerConfiguration; + private outputChannel: IOutputChannel; private errorsShown: boolean; private childProcess: LineProcess; @@ -75,6 +76,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { this.configuration = parseResult.configuration; this.defaultBuildTaskIdentifier = parseResult.defaultBuildTaskIdentifier; this.defaultTestTaskIdentifier = parseResult.defaultTestTaskIdentifier; + this.outputChannel = this.outputService.getOutputChannel(this.outputChannelId); if (!this.validationStatus.isOK()) { this.showOutput(); @@ -177,12 +179,10 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { throw err; } else if (err instanceof Error) { let error = err; - const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); - outputChannel.append(error.message); + this.outputChannel.append(error.message); throw new TaskError(Severity.Error, error.message, TaskErrors.UnknownError); } else { - const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); - outputChannel.append(err.toString()); + this.outputChannel.append(err.toString()); throw new TaskError(Severity.Error, nls.localize('TaskRunnerSystem.unknownError', 'A unknown error has occurred while executing a task. See task output log for details.'), TaskErrors.UnknownError); } } @@ -269,8 +269,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { return this.handleError(task, error); }, (progress: LineData) => { let line = Strings.removeAnsiEscapeCodes(progress.line); - const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); - outputChannel.append(line + '\n'); + this.outputChannel.append(line + '\n'); watchingProblemMatcher.processLine(line); if (delayer === null) { delayer = new Async.Delayer(3000); @@ -307,8 +306,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { return this.handleError(task, error); }, (progress) => { let line = Strings.removeAnsiEscapeCodes(progress.line); - const outputChannel = this.outputService.getOutputChannel(this.outputChannelId); - outputChannel.append(line + '\n'); + this.outputChannel.append(line + '\n'); startStopProblemMatcher.processLine(line); }); return { promise }; @@ -325,16 +323,16 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { if (error.error && !error.terminated) { let args:string = this.configuration.args ? this.configuration.args.join(' ') : ''; this.log(nls.localize('TaskRunnerSystem.childProcessError', 'Failed to launch external program {0} {1}.', this.configuration.command, args)); - this.outputService.getOutputChannel(this.outputChannelId).append(error.error.message); + this.outputChannel.append(error.error.message); makeVisible = true; } if (error.stdout) { - this.outputService.getOutputChannel(this.outputChannelId).append(error.stdout); + this.outputChannel.append(error.stdout); makeVisible = true; } if (error.stderr) { - this.outputService.getOutputChannel(this.outputChannelId).append(error.stderr); + this.outputChannel.append(error.stderr); makeVisible = true; } makeVisible = this.checkTerminated(task, error) || makeVisible; @@ -402,14 +400,14 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { } public log(value: string): void { - this.outputService.getOutputChannel(this.outputChannelId).append(value + '\n'); + this.outputChannel.append(value + '\n'); } private showOutput(): void { - this.outputService.getOutputChannel(this.outputChannelId).show(true); + this.outputChannel.show(true); } private clearOutput(): void { - this.outputService.getOutputChannel(this.outputChannelId).clear(); + this.outputChannel.clear(); } } \ No newline at end of file From 65e0142dbd60c7d046113d8eda8b2ab05f743f59 Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 14 Apr 2016 12:05:56 +0200 Subject: [PATCH 100/117] output: polish api --- src/vs/base/browser/ui/actionbar/actionbar.ts | 6 +++- .../api/node/extHostOutputService.ts | 2 +- .../electron-browser/extensionsWidgets.ts | 2 +- .../workbench/parts/git/browser/gitOutput.ts | 2 +- .../parts/git/browser/gitServices.ts | 2 +- .../git/browser/views/changes/changesView.ts | 2 +- .../parts/output/browser/outputActions.ts | 22 +++++++++------ .../parts/output/browser/outputPanel.ts | 6 ++-- .../workbench/parts/output/common/output.ts | 18 ++++++++++-- .../parts/output/common/outputEditorInput.ts | 28 +++++++------------ .../parts/output/common/outputServices.ts | 22 ++++++++++----- .../electron-browser/task.contribution.ts | 6 ++-- .../parts/tasks/node/processRunnerSystem.ts | 6 ++-- 13 files changed, 72 insertions(+), 52 deletions(-) diff --git a/src/vs/base/browser/ui/actionbar/actionbar.ts b/src/vs/base/browser/ui/actionbar/actionbar.ts index 7d5e1983a4f..1b87df5d5d6 100644 --- a/src/vs/base/browser/ui/actionbar/actionbar.ts +++ b/src/vs/base/browser/ui/actionbar/actionbar.ts @@ -749,10 +749,14 @@ export class SelectActionItem extends BaseActionItem { private registerListeners(): void { this.toDispose.push(DOM.addStandardDisposableListener(this.select, 'change', (e) => { - this.actionRunner.run(this._action, e.target.value).done(); + this.actionRunner.run(this._action, this.getActionContext(e.target.value)).done(); })); } + protected getActionContext(option: string) { + return option; + } + public focus(): void { if (this.select) { this.select.focus(); diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index a8ef4e7f918..9dca2e375ba 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -87,7 +87,7 @@ export class MainThreadOutputService { } public getOutputChannel(channelId): IOutputChannel { - return this._outputService.getOutputChannel(channelId); + return this._outputService.getChannel(channelId); } public close(channel: string): TPromise { diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts index 0cb6789a924..c12f07007d8 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.ts @@ -115,7 +115,7 @@ export class ExtensionsStatusbarItem implements IStatusbarItem { const name = extension && extension.name; const message = name ? `${ name }: ${ m.message }` : m.message; - const outputChannel = this.outputService.getOutputChannel(ExtensionsChannelId); + const outputChannel = this.outputService.getChannel(ExtensionsChannelId); outputChannel.append(message); outputChannel.show(true); }); diff --git a/src/vs/workbench/parts/git/browser/gitOutput.ts b/src/vs/workbench/parts/git/browser/gitOutput.ts index 9f65bf01728..59c76e209d4 100644 --- a/src/vs/workbench/parts/git/browser/gitOutput.ts +++ b/src/vs/workbench/parts/git/browser/gitOutput.ts @@ -47,7 +47,7 @@ export class GitOutput implements ext.IWorkbenchContribution { } private onOutput(output: string): void { - this.outputService.getOutputChannel('Git').append(output); + this.outputService.getChannel('Git').append(output); } public dispose(): void { diff --git a/src/vs/workbench/parts/git/browser/gitServices.ts b/src/vs/workbench/parts/git/browser/gitServices.ts index 7f64e7e2113..aa0fdf0dd35 100644 --- a/src/vs/workbench/parts/git/browser/gitServices.ts +++ b/src/vs/workbench/parts/git/browser/gitServices.ts @@ -689,7 +689,7 @@ export class GitService extends ee.EventEmitter } var error: Error; - var showOutputAction = new actions.Action('show.gitOutput', nls.localize('showOutput', "Show Output"), null, true, () => this.outputService.getOutputChannel('Git').show()); + var showOutputAction = new actions.Action('show.gitOutput', nls.localize('showOutput', "Show Output"), null, true, () => this.outputService.getChannel('Git').show()); var cancelAction = new actions.Action('close.message', nls.localize('cancel', "Cancel"), null, true, ()=>winjs.TPromise.as(true)); error = errors.create( diff --git a/src/vs/workbench/parts/git/browser/views/changes/changesView.ts b/src/vs/workbench/parts/git/browser/views/changes/changesView.ts index fcc9f7a896d..eaa0046d93e 100644 --- a/src/vs/workbench/parts/git/browser/views/changes/changesView.ts +++ b/src/vs/workbench/parts/git/browser/views/changes/changesView.ts @@ -264,7 +264,7 @@ export class ChangesView extends EventEmitter.EventEmitter implements GitView.IV this.instantiationService.createInstance(GitActions.GlobalUnstageAction), this.instantiationService.createInstance(GitActions.GlobalUndoAction), new ActionBar.Separator(), - new Actions.Action('show.gitOutput', nls.localize('showOutput', "Show Git Output"), null, true, () => this.outputService.getOutputChannel('Git').show()) + new Actions.Action('show.gitOutput', nls.localize('showOutput', "Show Git Output"), null, true, () => this.outputService.getChannel('Git').show()) ]; this.secondaryActions.forEach(a => this.toDispose.push(a)); diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index e7ac36bc815..d3948d753db 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -38,7 +38,7 @@ export class ToggleOutputAction extends Action { return TPromise.as(null); } - return this.outputService.getOutputChannel(this.outputService.getActiveChannelId()).show(); + return this.outputService.getActiveChannel().show(); } } @@ -52,7 +52,7 @@ export class ClearOutputAction extends Action { } public run(): TPromise { - this.outputService.getOutputChannel(this.outputService.getActiveChannelId()).clear(); + this.outputService.getActiveChannel().clear(); this.panelService.getActivePanel().focus(); return TPromise.as(true); @@ -83,7 +83,7 @@ export class ClearOutputEditorAction extends EditorAction { } public run(): TPromise { - this.outputService.getOutputChannel(this.outputService.getActiveChannelId()).clear(); + this.outputService.getActiveChannel().clear(); return TPromise.as(false); } } @@ -99,7 +99,7 @@ export class SwitchOutputAction extends Action { } public run(channelId?: string): TPromise { - return this.outputService.getOutputChannel(channelId).show(); + return this.outputService.getChannel(channelId).show(); } } @@ -109,19 +109,25 @@ export class SwitchOutputActionItem extends SelectActionItem { action: IAction, @IOutputService private outputService: IOutputService ) { - super(null, action, SwitchOutputActionItem.getChannels(outputService), Math.max(0, SwitchOutputActionItem.getChannels(outputService).indexOf(outputService.getActiveChannelId()))); + super(null, action, SwitchOutputActionItem.getChannelLabels(outputService), Math.max(0, SwitchOutputActionItem.getChannelLabels(outputService).indexOf(outputService.getActiveChannel().label))); this.toDispose.push(this.outputService.onOutputChannel(this.onOutputChannel, this)); this.toDispose.push(this.outputService.onActiveOutputChannel(this.onOutputChannel, this)); } + protected getActionContext(option: string): string { + const channel = (Registry.as(Extensions.OutputChannels)).getChannels().filter(channelData => channelData.label === option).pop(); + + return channel ? channel.id : option; + } + private onOutputChannel(): void { - let channels = SwitchOutputActionItem.getChannels(this.outputService); - let selected = Math.max(0, channels.indexOf(this.outputService.getActiveChannelId())); + let channels = SwitchOutputActionItem.getChannelLabels(this.outputService); + let selected = Math.max(0, channels.indexOf(this.outputService.getActiveChannel().label)); this.setOptions(channels, selected); } - private static getChannels(outputService: IOutputService): string[] { + private static getChannelLabels(outputService: IOutputService): string[] { const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.label); return contributedChannels.sort(); // sort by name } diff --git a/src/vs/workbench/parts/output/browser/outputPanel.ts b/src/vs/workbench/parts/output/browser/outputPanel.ts index 172ee56f91c..48c56a64ea5 100644 --- a/src/vs/workbench/parts/output/browser/outputPanel.ts +++ b/src/vs/workbench/parts/output/browser/outputPanel.ts @@ -85,8 +85,8 @@ export class OutputPanel extends StringEditor { options.rulers = []; options.folding = false; - let channel = this.outputService.getActiveChannelId(); - options.ariaLabel = channel ? nls.localize('outputPanelWithInputAriaLabel', "{0}, Output panel", channel) : nls.localize('outputPanelAriaLabel', "Output panel"); + const channel = this.outputService.getActiveChannel(); + options.ariaLabel = channel ? nls.localize('outputPanelWithInputAriaLabel', "{0}, Output panel", channel.label) : nls.localize('outputPanelAriaLabel', "Output panel"); return options; } @@ -97,7 +97,7 @@ export class OutputPanel extends StringEditor { public create(parent: Builder): TPromise { return super.create(parent) - .then(() => this.setInput(OutputEditorInput.getInstance(this.instantiationService, this.outputService.getActiveChannelId()), null)); + .then(() => this.setInput(OutputEditorInput.getInstance(this.instantiationService, this.outputService.getActiveChannel()), null)); } public focus(): void { diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index cc7e4b42506..6c9fc50678b 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -56,13 +56,15 @@ export interface IOutputService { /** * Given the channel id returns the output channel instance. + * Returns null if output channel with id is not registered. */ - getOutputChannel(id: string): IOutputChannel; + getChannel(id: string): IOutputChannel; /** - * Returns the name of the currently opened channel. + * Returns the currently active channel. + * Only one channel can be active at a given moment. */ - getActiveChannelId(): string; + getActiveChannel(): IOutputChannel; /** * Allows to register on Output events. @@ -82,6 +84,16 @@ export interface IOutputService { export interface IOutputChannel { + /** + * Identifier of the output channel. + */ + id: string; + + /** + * Label of the output channel to be displayed to the user. + */ + label: string; + /** * Returns the received output content. */ diff --git a/src/vs/workbench/parts/output/common/outputEditorInput.ts b/src/vs/workbench/parts/output/common/outputEditorInput.ts index 8b71af4f805..8cdca2103f9 100644 --- a/src/vs/workbench/parts/output/common/outputEditorInput.ts +++ b/src/vs/workbench/parts/output/common/outputEditorInput.ts @@ -27,37 +27,33 @@ export class OutputEditorInput extends StringEditorInput { private static instances: { [channel: string]: OutputEditorInput; } = Object.create(null); private outputSet: boolean; - private channelId: string; private bufferedOutput: string; private toDispose: lifecycle.IDisposable[]; private appendOutputScheduler: RunOnceScheduler; - private outputChannel: IOutputChannel; public static getInstances(): OutputEditorInput[] { return Object.keys(OutputEditorInput.instances).map((key) => OutputEditorInput.instances[key]); } - public static getInstance(instantiationService: IInstantiationService, channel: string): OutputEditorInput { - if (OutputEditorInput.instances[channel]) { - return OutputEditorInput.instances[channel]; + public static getInstance(instantiationService: IInstantiationService, channel: IOutputChannel): OutputEditorInput { + if (OutputEditorInput.instances[channel.id]) { + return OutputEditorInput.instances[channel.id]; } - OutputEditorInput.instances[channel] = instantiationService.createInstance(OutputEditorInput, channel); + OutputEditorInput.instances[channel.id] = instantiationService.createInstance(OutputEditorInput, channel); - return OutputEditorInput.instances[channel]; + return OutputEditorInput.instances[channel.id]; } constructor( - channelId: string, + private outputChannel: IOutputChannel, @IInstantiationService instantiationService: IInstantiationService, @IOutputService private outputService: IOutputService, @IPanelService private panelService: IPanelService, @IEventService private eventService: IEventService ) { - super(nls.localize('output', "Output"), channelId ? nls.localize('outputChannel', "for '{0}'", channelId) : '', '', OUTPUT_MIME, true, instantiationService); + super(nls.localize('output', "Output"), outputChannel ? nls.localize('outputChannel', "for '{0}'", outputChannel.label) : '', '', OUTPUT_MIME, true, instantiationService); - this.channelId = channelId; - this.outputChannel = this.outputService.getOutputChannel(channelId); this.bufferedOutput = ''; this.toDispose = []; this.toDispose.push(this.outputService.onOutput(this.onOutputReceived, this)); @@ -88,7 +84,7 @@ export class OutputEditorInput extends StringEditorInput { } private onOutputReceived(e: IOutputEvent): void { - if (this.outputSet && e.channelId === this.channelId) { + if (this.outputSet && e.channelId === this.outputChannel.id) { if (e.output) { this.bufferedOutput = strings.appendWithLimit(this.bufferedOutput, e.output, MAX_OUTPUT_LENGTH); this.scheduleOutputAppend(); @@ -100,7 +96,7 @@ export class OutputEditorInput extends StringEditorInput { private isVisible(): boolean { const panel = this.panelService.getActivePanel(); - return panel && panel.getId() === OUTPUT_PANEL_ID && this.outputService.getActiveChannelId() === this.channelId; + return panel && panel.getId() === OUTPUT_PANEL_ID && this.outputService.getActiveChannel().id === this.outputChannel.id; } private scheduleOutputAppend(): void { @@ -127,14 +123,10 @@ export class OutputEditorInput extends StringEditorInput { }); } - public getChannel(): string { - return this.channelId; - } - public matches(otherInput: any): boolean { if (otherInput instanceof OutputEditorInput) { let otherOutputEditorInput = otherInput; - if (otherOutputEditorInput.getChannel() === this.channelId) { + if (otherOutputEditorInput.outputChannel.id === this.outputChannel.id) { return super.matches(otherInput); } } diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index b3a3768a7ec..dc3a0a39e5f 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -60,10 +60,18 @@ export class OutputService implements IOutputService { return this._onActiveOutputChannel.event; } - public getOutputChannel(id: string): IOutputChannel { + public getChannel(id: string): IOutputChannel { + const channelData = (Registry.as(Extensions.OutputChannels)).getChannels().filter(channelData => channelData.id === id).pop(); + if (!channelData) { + return null; + } + + const self = this; return { + id, + label: channelData.label, get output() { - return this.getOutput(id); + return self.getOutput(id); }, append: (output: string) => this.append(id, output), show: (preserveFocus: boolean) => this.showOutput(id, preserveFocus), @@ -91,12 +99,12 @@ export class OutputService implements IOutputService { this._onOutput.fire({ output: output, channelId: channelId }); } - private getOutput(channelId: string): string { - return this.receivedOutput[channelId] || ''; + public getActiveChannel(): IOutputChannel { + return this.getChannel(this.activeChannelId); } - public getActiveChannelId(): string { - return this.activeChannelId; + private getOutput(channelId: string): string { + return this.receivedOutput[channelId] || ''; } private clearOutput(channelId: string): void { @@ -116,7 +124,7 @@ export class OutputService implements IOutputService { this._onActiveOutputChannel.fire(channelId); // emit event that a new channel is active return this.panelService.openPanel(OUTPUT_PANEL_ID, !preserveFocus).then((outputPanel: OutputPanel) => { - return outputPanel && outputPanel.setInput(OutputEditorInput.getInstance(this.instantiationService, channelId), EditorOptions.create({ preserveFocus: preserveFocus })). + return outputPanel && outputPanel.setInput(OutputEditorInput.getInstance(this.instantiationService, this.getChannel(channelId)), EditorOptions.create({ preserveFocus: preserveFocus })). then(() => outputPanel); }); } diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 333ee0697f3..275392342fc 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -182,7 +182,7 @@ class ConfigureTaskRunnerAction extends Action { } let contentPromise: TPromise; if (selection.autoDetect) { - const outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); + const outputChannel = this.outputService.getChannel(TaskService.OutputChannelId); outputChannel.show(); outputChannel.append(nls.localize('ConfigureTaskRunnerAction.autoDetecting', 'Auto detecting tasks for {0}', selection.id) + '\n'); let detector = new ProcessRunnerDetector(this.fileService, this.contextService, new SystemVariables(this.editorService, this.contextService)); @@ -288,7 +288,7 @@ class ShowLogAction extends AbstractTaskAction { } public run(): Promise { - return this.outputService.getOutputChannel(TaskService.OutputChannelId).show(); + return this.outputService.getChannel(TaskService.OutputChannelId).show(); } } @@ -506,7 +506,7 @@ class TaskService extends EventEmitter implements ITaskService { this.taskSystemListeners = []; this.clearTaskSystemPromise = false; - this.outputChannel = this.outputService.getOutputChannel(TaskService.OutputChannelId); + this.outputChannel = this.outputService.getChannel(TaskService.OutputChannelId); this.configurationService.addListener(ConfigurationServiceEventTypes.UPDATED, () => { this.emit(TaskServiceEvents.ConfigChanged); if (this._taskSystem && this._taskSystem.isActiveSync()) { diff --git a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts index e99ad34f21d..c3a49d241da 100644 --- a/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts +++ b/src/vs/workbench/parts/tasks/node/processRunnerSystem.ts @@ -39,7 +39,6 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { private markerService: IMarkerService; private modelService: IModelService; private outputService: IOutputService; - private outputChannelId: string; private telemetryService: ITelemetryService; private validationStatus: ValidationStatus; @@ -52,13 +51,12 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { private childProcess: LineProcess; private activeTaskIdentifier: string; - constructor(fileConfig:FileConfig.ExternalTaskRunnerConfiguration, variables:SystemVariables, markerService:IMarkerService, modelService: IModelService, telemetryService: ITelemetryService, outputService:IOutputService, outputChannel:string, clearOutput: boolean = true) { + constructor(fileConfig:FileConfig.ExternalTaskRunnerConfiguration, variables:SystemVariables, markerService:IMarkerService, modelService: IModelService, telemetryService: ITelemetryService, outputService:IOutputService, outputChannelId:string, clearOutput: boolean = true) { super(); this.fileConfig = fileConfig; this.variables = variables; this.markerService = markerService; this.modelService = modelService; - this.outputChannelId = outputChannel; this.outputService = outputService; this.telemetryService = telemetryService; @@ -66,6 +64,7 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { this.defaultTestTaskIdentifier = null; this.childProcess = null; this.activeTaskIdentifier = null; + this.outputChannel = this.outputService.getChannel(outputChannelId); if (clearOutput) { this.clearOutput(); @@ -76,7 +75,6 @@ export class ProcessRunnerSystem extends EventEmitter implements ITaskSystem { this.configuration = parseResult.configuration; this.defaultBuildTaskIdentifier = parseResult.defaultBuildTaskIdentifier; this.defaultTestTaskIdentifier = parseResult.defaultTestTaskIdentifier; - this.outputChannel = this.outputService.getOutputChannel(this.outputChannelId); if (!this.validationStatus.isOK()) { this.showOutput(); From 37f6bc488ab825d39be0565053d1b3d43b508101 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 13:51:04 +0200 Subject: [PATCH 101/117] add IKeybindingService#hasCommand, #3676 --- .../platform/keybinding/browser/keybindingServiceImpl.ts | 7 ++++++- src/vs/platform/keybinding/common/keybindingService.ts | 1 + .../keybinding/test/common/mockKeybindingService.ts | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts b/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts index 81b9582c791..15695e9160b 100644 --- a/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts +++ b/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts @@ -163,6 +163,11 @@ export abstract class AbstractKeybindingService { this.getContext(this._myContextId).removeValue(key); } + public hasCommand(commandId: string): boolean { + return !!KeybindingsRegistry.getCommands()[commandId]; + } + + public abstract executeCommand(commandId: string, args: any): TPromise; public abstract getLabelFor(keybinding: Keybinding): string; public abstract getHTMLLabelFor(keybinding: Keybinding): IHTMLContentElement[]; public abstract getAriaLabelFor(keybinding: Keybinding): string; @@ -173,7 +178,7 @@ export abstract class AbstractKeybindingService { public abstract disposeContext(contextId: number): void; public abstract getDefaultKeybindings(): string; public abstract lookupKeybindings(commandId: string): Keybinding[]; - public abstract executeCommand(commandId: string, args: any): TPromise; + } export abstract class KeybindingService extends AbstractKeybindingService implements IKeybindingService { diff --git a/src/vs/platform/keybinding/common/keybindingService.ts b/src/vs/platform/keybinding/common/keybindingService.ts index 69c91a4b91e..5ea72583319 100644 --- a/src/vs/platform/keybinding/common/keybindingService.ts +++ b/src/vs/platform/keybinding/common/keybindingService.ts @@ -337,6 +337,7 @@ export interface IKeybindingService { executeCommand(commandId: string, args?: any): TPromise; executeCommand(commandId: string, args?: any): TPromise; + hasCommand(commandId: string): boolean; } export const SET_CONTEXT_COMMAND_ID = 'setContext'; diff --git a/src/vs/platform/keybinding/test/common/mockKeybindingService.ts b/src/vs/platform/keybinding/test/common/mockKeybindingService.ts index 010b71e43a0..648eadeedee 100644 --- a/src/vs/platform/keybinding/test/common/mockKeybindingService.ts +++ b/src/vs/platform/keybinding/test/common/mockKeybindingService.ts @@ -34,6 +34,7 @@ export class MockKeybindingService implements IKeybindingService { public dispose(): void { } public executeCommand(commandId: string, args: any): TPromise { return; } + public hasCommand(commandId) { return false; } public createKey(key: string, defaultValue: T): IKeybindingContextKey { return new MockKeybindingContextKey(key, defaultValue); From d295bff1d73faa5a159fdef8eac7af14c4d9b06b Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 14:47:57 +0200 Subject: [PATCH 102/117] add IOpenerService and use it with webview, #3676 --- src/vs/platform/opener/common/opener.ts | 25 +++++++ .../electron-browser/opener.contribution.ts | 12 ++++ .../opener/electron-browser/openerService.ts | 65 +++++++++++++++++++ src/vs/workbench/electron-browser/shell.ts | 3 + .../parts/html/browser/htmlPreviewPart.ts | 15 ++++- .../workbench/parts/html/browser/webview.html | 17 +++++ 6 files changed, 135 insertions(+), 2 deletions(-) create mode 100644 src/vs/platform/opener/common/opener.ts create mode 100644 src/vs/platform/opener/electron-browser/opener.contribution.ts create mode 100644 src/vs/platform/opener/electron-browser/openerService.ts diff --git a/src/vs/platform/opener/common/opener.ts b/src/vs/platform/opener/common/opener.ts new file mode 100644 index 00000000000..60b3f6c1df0 --- /dev/null +++ b/src/vs/platform/opener/common/opener.ts @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +'use strict'; + +import URI from 'vs/base/common/uri'; +import {TPromise} from 'vs/base/common/winjs.base'; +import {createDecorator} from 'vs/platform/instantiation/common/instantiation'; + +export const IOpenerService = createDecorator('openerService'); + + +export interface IOpenerService { + + serviceId: any; + + /** + * Opens a resource, like a webadress, a document uri, or executes command. + * + * @param resource A resource + * @return A promise that resolves when the opening is done. + */ + open(resource: URI): TPromise; +} diff --git a/src/vs/platform/opener/electron-browser/opener.contribution.ts b/src/vs/platform/opener/electron-browser/opener.contribution.ts new file mode 100644 index 00000000000..6ae5493bc44 --- /dev/null +++ b/src/vs/platform/opener/electron-browser/opener.contribution.ts @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +'use strict'; + +import {registerSingleton} from 'vs/platform/instantiation/common/extensions'; +import {OpenerService} from 'vs/platform/opener/electron-browser/openerService'; +import {IOpenerService} from 'vs/platform/opener/common/opener'; + +registerSingleton(IOpenerService, OpenerService); diff --git a/src/vs/platform/opener/electron-browser/openerService.ts b/src/vs/platform/opener/electron-browser/openerService.ts new file mode 100644 index 00000000000..42fe621a08c --- /dev/null +++ b/src/vs/platform/opener/electron-browser/openerService.ts @@ -0,0 +1,65 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +'use strict'; + +import URI from 'vs/base/common/uri'; +import {Schemas} from 'vs/base/common/network'; +import {TPromise} from 'vs/base/common/winjs.base'; +import {IEditorService} from 'vs/platform/editor/common/editor'; +import {IKeybindingService} from 'vs/platform/keybinding/common/keybindingService'; +import {IOpenerService} from '../common/opener'; + +export class OpenerService implements IOpenerService { + + serviceId: any; + + constructor( + @IEditorService private _editorService: IEditorService, + @IKeybindingService private _keybindingService: IKeybindingService + ) { + // + } + + open(resource: URI): TPromise { + + const {scheme, path, query, fragment} = resource; + let promise: TPromise; + if (scheme === Schemas.http || scheme === Schemas.https) { + // open http + window.open(resource.toString(true)); + + } else if (scheme === 'command' && this._keybindingService.hasCommand(path)) { + // execute as command + let args: any; + try { + args = JSON.parse(query); + } catch (e) { + // + } + promise = this._keybindingService.executeCommand(path, Array.isArray(args) ? args : [args]); + + } else { + promise = this._editorService.resolveEditorModel({ resource }).then(model => { + if (!model) { + return; + } + // support file:///some/file.js#L73 + let selection: { + startLineNumber: number; + startColumn: number; + }; + if (/^L\d+$/.test(fragment)) { + selection = { + startLineNumber: parseInt(fragment.substr(1)), + startColumn: 1 + }; + } + return this._editorService.openEditor({ resource, options: { selection } }); + }); + } + + return TPromise.as(promise).then(undefined, err => { }); // !ignores all errors + } +} diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index 63bcf560c82..f3535ae81d4 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -93,6 +93,9 @@ import {IExtensionsService} from 'vs/workbench/parts/extensions/common/extension import {ExtensionsService} from 'vs/workbench/parts/extensions/node/extensionsService'; import {ReloadWindowAction} from 'vs/workbench/electron-browser/actions'; +// self registering service +import 'vs/platform/opener/electron-browser/opener.contribution'; + /** * Services that we require for the Shell */ diff --git a/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts b/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts index 07ad0078573..136f42c989a 100644 --- a/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts +++ b/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts @@ -24,6 +24,7 @@ import {BaseTextEditorModel} from 'vs/workbench/common/editor/textEditorModel'; import {HtmlInput} from 'vs/workbench/parts/html/common/htmlInput'; import {IThemeService} from 'vs/workbench/services/themes/common/themeService'; import {KeybindingsRegistry} from 'vs/platform/keybinding/common/keybindingsRegistry'; +import {IOpenerService} from 'vs/platform/opener/common/opener'; KeybindingsRegistry.registerCommandDesc({ id: '_webview.openDevTools', @@ -62,7 +63,7 @@ class ManagedWebview { private _ready: TPromise; private _disposables: IDisposable[]; - constructor(private _parent: HTMLElement, private _layoutParent: HTMLElement, private _styleElement) { + constructor(private _parent: HTMLElement, private _layoutParent: HTMLElement, private _styleElement, onDidClickLink:(uri:URI)=>any) { this._webview = document.createElement('webview'); this._webview.style.zIndex = '1'; this._webview.style.position = 'absolute'; @@ -88,6 +89,12 @@ class ManagedWebview { }), addDisposableListener(this._webview, 'crashed', function () { console.error('embedded page crashed'); + }), + addDisposableListener(this._webview, 'ipc-message', (event) => { + if (event.channel === 'did-click-link') { + let [uri] = event.args; + onDidClickLink(URI.parse(uri)); + } }) ]; @@ -190,6 +197,7 @@ export class HtmlPreviewPart extends BaseEditor { private _editorService: IWorkbenchEditorService; private _themeService: IThemeService; + private _openerService: IOpenerService; private _webview: ManagedWebview; private _container: HTMLDivElement; @@ -203,12 +211,14 @@ export class HtmlPreviewPart extends BaseEditor { @ITelemetryService telemetryService: ITelemetryService, @IWorkbenchEditorService editorService: IWorkbenchEditorService, @IThemeService themeService: IThemeService, + @IOpenerService openerService: IOpenerService, @IWorkspaceContextService contextService: IWorkspaceContextService ) { super(HtmlPreviewPart.ID, telemetryService); this._editorService = editorService; this._themeService = themeService; + this._openerService = openerService; this._baseUrl = contextService.toResource('/'); } @@ -232,7 +242,8 @@ export class HtmlPreviewPart extends BaseEditor { if (!this._webview) { this._webview = new ManagedWebview(document.getElementById('workbench.main.container'), this._container, - document.querySelector('.monaco-editor-background')); + document.querySelector('.monaco-editor-background'), + uri => this._openerService.open(uri)); this._webview.baseUrl = this._baseUrl && this._baseUrl.toString(); } diff --git a/src/vs/workbench/parts/html/browser/webview.html b/src/vs/workbench/parts/html/browser/webview.html index 12bb4a5b69b..465b1faf6af 100644 --- a/src/vs/workbench/parts/html/browser/webview.html +++ b/src/vs/workbench/parts/html/browser/webview.html @@ -66,6 +66,17 @@ newDocument.head.appendChild(defaultStyles); } + // script to bubble out link-clicks + const defaultScripts = newDocument.createElement('script'); + defaultScripts.innerHTML = ` + document.body.addEventListener('click', function (event) { + if(event.target.tagName === 'A' && event.target.href) { + window.parent.postMessage({ command: 'did-click-link', data: event.target.href }, 'file://'); + event.preventDefault(); + } + });` + newDocument.body.appendChild(defaultScripts); + // write new content onto iframe target.contentDocument.open('text/html', 'replace'); target.contentDocument.write(newDocument.documentElement.innerHTML); @@ -73,6 +84,12 @@ }); + // forward messages from the embedded iframe + window.onmessage = function(message) { + const { command, data} = message.data; + ipcRenderer.sendToHost(command, data); + }; + // signal ready, needs a short timeout for an // unknown reason setTimeout(function() { From 464637dbe68fb08775b5beb8baba1a12043a7ff9 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 15:04:33 +0200 Subject: [PATCH 103/117] vscode.previewHtml accept URI or string --- src/vs/workbench/api/node/extHostApiCommands.ts | 4 ++-- src/vs/workbench/parts/html/browser/html.contribution.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/vs/workbench/api/node/extHostApiCommands.ts b/src/vs/workbench/api/node/extHostApiCommands.ts index a59299c84e2..ae306f0fa56 100644 --- a/src/vs/workbench/api/node/extHostApiCommands.ts +++ b/src/vs/workbench/api/node/extHostApiCommands.ts @@ -156,9 +156,9 @@ class ExtHostApiCommands { typeof position === 'number' ? typeConverters.fromViewColumn(position) : void 0); }, { - description: 'Preview an html document.', + description: 'Render the html of the resource in an editor view.', args: [ - { name: 'uri', description: 'Uri of the document to preview.', constraint: URI }, + { name: 'uri', description: 'Uri of the resource to preview.', constraint: value => value instanceof URI || typeof value === 'string' }, { name: 'column', description: '(optional) Column in which to preview.' }, ] }); diff --git a/src/vs/workbench/parts/html/browser/html.contribution.ts b/src/vs/workbench/parts/html/browser/html.contribution.ts index 65ea8acda8c..ccb1e10715c 100644 --- a/src/vs/workbench/parts/html/browser/html.contribution.ts +++ b/src/vs/workbench/parts/html/browser/html.contribution.ts @@ -28,11 +28,11 @@ import {SyncDescriptor} from 'vs/platform/instantiation/common/descriptors'; KeybindingsRegistry.registerCommandDesc({ id: '_workbench.previewHtml', weight: KeybindingsRegistry.WEIGHT.workbenchContrib(0), - handler(accessor: ServicesAccessor, args: [URI, EditorPosition]) { + handler(accessor: ServicesAccessor, args: [URI|string, EditorPosition]) { let [resource, position] = args; - let name = resource.fsPath; - let input = accessor.get(IInstantiationService).createInstance(HtmlInput, name, undefined, resource); + let uri = resource instanceof URI ? resource : URI.parse(resource); + let input = accessor.get(IInstantiationService).createInstance(HtmlInput, uri.fsPath, undefined, uri); return accessor.get(IWorkbenchEditorService).openEditor(input, null, position) .then(editor => true); From 6350d1a8b071f10a9d65f5fecf32a3eebad3360a Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 15:38:07 +0200 Subject: [PATCH 104/117] workaround keybindingservice tricks --- .../platform/keybinding/browser/keybindingServiceImpl.ts | 7 ++++++- src/vs/platform/opener/electron-browser/openerService.ts | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts b/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts index 15695e9160b..f09440b1c53 100644 --- a/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts +++ b/src/vs/platform/keybinding/browser/keybindingServiceImpl.ts @@ -378,7 +378,12 @@ export abstract class KeybindingService extends AbstractKeybindingService implem } public executeCommand(commandId: string, args: any = {}): TPromise { - if (!args.context) { + + // TODO@{Alex,Joh} we should spec what args should be. adding extra + // props on a string will throw errors + if ((Array.isArray(args) || typeof args === 'object') + && !args.context) { + args.context = Object.create(null); this.getContext(this._findContextAttr(document.activeElement)).fillInContext(args.context); this._configurationContext.fillInContext(args.context); diff --git a/src/vs/platform/opener/electron-browser/openerService.ts b/src/vs/platform/opener/electron-browser/openerService.ts index 42fe621a08c..8f60eef8653 100644 --- a/src/vs/platform/opener/electron-browser/openerService.ts +++ b/src/vs/platform/opener/electron-browser/openerService.ts @@ -38,7 +38,7 @@ export class OpenerService implements IOpenerService { } catch (e) { // } - promise = this._keybindingService.executeCommand(path, Array.isArray(args) ? args : [args]); + promise = this._keybindingService.executeCommand(path, args); } else { promise = this._editorService.resolveEditorModel({ resource }).then(model => { From a3f49d3280aec29f84aab2801480d10986b92d51 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 15:42:35 +0200 Subject: [PATCH 105/117] use IOpenerService for hovers --- src/vs/editor/contrib/hover/browser/hover.ts | 9 +++--- .../hover/browser/modesContentHover.ts | 28 ++++--------------- src/vs/platform/opener/common/opener.ts | 5 ++++ 3 files changed, 14 insertions(+), 28 deletions(-) diff --git a/src/vs/editor/contrib/hover/browser/hover.ts b/src/vs/editor/contrib/hover/browser/hover.ts index 5e8a98e73ae..6043a5fb9a2 100644 --- a/src/vs/editor/contrib/hover/browser/hover.ts +++ b/src/vs/editor/contrib/hover/browser/hover.ts @@ -12,8 +12,8 @@ import {KeyCode, KeyMod} from 'vs/base/common/keyCodes'; import * as platform from 'vs/base/common/platform'; import {TPromise} from 'vs/base/common/winjs.base'; import {IKeyboardEvent} from 'vs/base/browser/keyboardEvent'; -import {IEditorService} from 'vs/platform/editor/common/editor'; -import {IKeybindingService, KbExpr} from 'vs/platform/keybinding/common/keybindingService'; +import {IOpenerService} from 'vs/platform/opener/common/opener'; +import {KbExpr} from 'vs/platform/keybinding/common/keybindingService'; import {Range} from 'vs/editor/common/core/range'; import {EditorAction} from 'vs/editor/common/editorAction'; import {Behaviour} from 'vs/editor/common/editorActionEnablement'; @@ -39,8 +39,7 @@ class ModesHoverController implements editorCommon.IEditorContribution { } constructor(editor: ICodeEditor, - @IEditorService editorService: IEditorService, - @IKeybindingService keybindingService: IKeybindingService + @IOpenerService openerService: IOpenerService ) { this._editor = editor; @@ -55,7 +54,7 @@ class ModesHoverController implements editorCommon.IEditorContribution { this._toUnhook.push(this._editor.addListener(editorCommon.EventType.ModelDecorationsChanged, () => this._onModelDecorationsChanged())); this._toUnhook.push(this._editor.addListener('scroll', () => this._hideWidgets())); - this._contentWidget = new ModesContentHoverWidget(editor, editorService, keybindingService); + this._contentWidget = new ModesContentHoverWidget(editor, openerService); this._glyphWidget = new ModesGlyphHoverWidget(editor); } } diff --git a/src/vs/editor/contrib/hover/browser/modesContentHover.ts b/src/vs/editor/contrib/hover/browser/modesContentHover.ts index a136bda5ef9..9203fc05854 100644 --- a/src/vs/editor/contrib/hover/browser/modesContentHover.ts +++ b/src/vs/editor/contrib/hover/browser/modesContentHover.ts @@ -9,9 +9,7 @@ import * as nls from 'vs/nls'; import URI from 'vs/base/common/uri'; import {TPromise} from 'vs/base/common/winjs.base'; import {renderHtml} from 'vs/base/browser/htmlContentRenderer'; -import {IEditorService} from 'vs/platform/editor/common/editor'; -import {IKeybindingService} from 'vs/platform/keybinding/common/keybindingService'; -import {KeybindingsRegistry} from 'vs/platform/keybinding/common/keybindingsRegistry'; +import {IOpenerService, NullOpenerService} from 'vs/platform/opener/common/opener'; import {Range} from 'vs/editor/common/core/range'; import {IEditorRange, IRange} from 'vs/editor/common/editorCommon'; import {ExtraInfoRegistry, IComputeExtraInfoResult, IMode} from 'vs/editor/common/modes'; @@ -123,18 +121,16 @@ export class ModesContentHoverWidget extends ContentHoverWidget { private _hoverOperation: HoverOperation; private _highlightDecorations:string[]; private _isChangingDecorations: boolean; - private _editorService: IEditorService; - private _keybindingService: IKeybindingService; + private _openerService: IOpenerService; private _shouldFocus: boolean; - constructor(editor: ICodeEditor, editorService: IEditorService, keybindingService: IKeybindingService) { + constructor(editor: ICodeEditor, openerService: IOpenerService) { super(ModesContentHoverWidget.ID, editor); this._computer = new ModesContentComputer(this._editor); this._highlightDecorations = []; this._isChangingDecorations = false; - this._editorService = editorService; - this._keybindingService = keybindingService; + this._openerService = openerService || NullOpenerService; this._hoverOperation = new HoverOperation( this._computer, @@ -246,21 +242,7 @@ export class ModesContentHoverWidget extends ContentHoverWidget { msg.htmlContent.forEach((content) => { container.appendChild(renderHtml(content, { actionCallback: (content) => { - - let promise: TPromise; - if (KeybindingsRegistry.getCommands()[content]) { - promise = this._keybindingService.executeCommand(content); - } else { - try { - let resource = URI.parse(content); - promise = this._editorService.openEditor({resource}); - } catch (e) { - // ignore - } - } - if (promise) { - promise.then(undefined, err => console.log(err)); - } + this._openerService.open(URI.parse(content)); }, codeBlockRenderer: (modeId, value) => { let mode: IMode; diff --git a/src/vs/platform/opener/common/opener.ts b/src/vs/platform/opener/common/opener.ts index 60b3f6c1df0..ad6fcf4862d 100644 --- a/src/vs/platform/opener/common/opener.ts +++ b/src/vs/platform/opener/common/opener.ts @@ -23,3 +23,8 @@ export interface IOpenerService { */ open(resource: URI): TPromise; } + +export const NullOpenerService: IOpenerService = Object.freeze({ + serviceId: undefined, + open() { return TPromise.as(undefined);} +}); From dd9380abab066b1c3f8e5fb55eda5df7f70f5083 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 15:57:31 +0200 Subject: [PATCH 106/117] update the previewHtml command doc --- src/vs/workbench/api/node/extHostApiCommands.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostApiCommands.ts b/src/vs/workbench/api/node/extHostApiCommands.ts index ae306f0fa56..f834d5e4c7a 100644 --- a/src/vs/workbench/api/node/extHostApiCommands.ts +++ b/src/vs/workbench/api/node/extHostApiCommands.ts @@ -156,7 +156,12 @@ class ExtHostApiCommands { typeof position === 'number' ? typeConverters.fromViewColumn(position) : void 0); }, { - description: 'Render the html of the resource in an editor view.', + description: ` + Render the html of the resource in an editor view. + + Links contained in the document will be handled by VS Code whereby it supports file-resources and virtual resources + as well as triggering commands using the 'command'-scheme. + `, args: [ { name: 'uri', description: 'Uri of the resource to preview.', constraint: value => value instanceof URI || typeof value === 'string' }, { name: 'column', description: '(optional) Column in which to preview.' }, From f0ce8d7c93517ed5b31ec2d991e1937ed4ca6e91 Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 14 Apr 2016 12:26:34 +0200 Subject: [PATCH 107/117] output: nicer syntax for getting channels from registry --- src/vs/workbench/parts/output/browser/outputActions.ts | 4 ++-- src/vs/workbench/parts/output/common/outputServices.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index d3948d753db..96f7033318e 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -115,7 +115,7 @@ export class SwitchOutputActionItem extends SelectActionItem { } protected getActionContext(option: string): string { - const channel = (Registry.as(Extensions.OutputChannels)).getChannels().filter(channelData => channelData.label === option).pop(); + const channel = Registry.as(Extensions.OutputChannels).getChannels().filter(channelData => channelData.label === option).pop(); return channel ? channel.id : option; } @@ -128,7 +128,7 @@ export class SwitchOutputActionItem extends SelectActionItem { } private static getChannelLabels(outputService: IOutputService): string[] { - const contributedChannels = (Registry.as(Extensions.OutputChannels)).getChannels().map(channelData => channelData.label); + const contributedChannels = Registry.as(Extensions.OutputChannels).getChannels().map(channelData => channelData.label); return contributedChannels.sort(); // sort by name } } diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index dc3a0a39e5f..3c9ca6f9b80 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -44,7 +44,7 @@ export class OutputService implements IOutputService { this.receivedOutput = Object.create(null); - const channels = (Registry.as(Extensions.OutputChannels)).getChannels(); + const channels = Registry.as(Extensions.OutputChannels).getChannels(); this.activeChannelId = this.storageService.get(OUTPUT_ACTIVE_CHANNEL_KEY, StorageScope.WORKSPACE, channels && channels.length > 0 ? channels[0].id : null); } @@ -61,7 +61,7 @@ export class OutputService implements IOutputService { } public getChannel(id: string): IOutputChannel { - const channelData = (Registry.as(Extensions.OutputChannels)).getChannels().filter(channelData => channelData.id === id).pop(); + const channelData = Registry.as(Extensions.OutputChannels).getChannels().filter(channelData => channelData.id === id).pop(); if (!channelData) { return null; } From 9916cec2b79ab71f711ad7108de703087262eff5 Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 14 Apr 2016 12:43:45 +0200 Subject: [PATCH 108/117] output: surface label for extension output channels --- src/vs/vscode.d.ts | 6 ++-- src/vs/workbench/api/node/extHost.api.impl.ts | 4 +-- .../api/node/extHostOutputService.ts | 28 +++++++++---------- .../workbench/parts/output/common/output.ts | 4 +-- .../parts/output/common/outputServices.ts | 11 ++++---- 5 files changed, 28 insertions(+), 25 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index ec8aa7ffa99..03d1c020c35 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -3084,9 +3084,11 @@ declare namespace vscode { /** * Create a new [output channel](#OutputChannel) with the given name. * - * @param name Human-readable string which will be used to represent the channel in the UI. + * @param name used as an identifier of the channel. + * @param label Human-readable string which will be used to represent the channel in the UI. + * If not specified name will be used for representing the channel in the UI. */ - export function createOutputChannel(name: string): OutputChannel; + export function createOutputChannel(name: string, label?: string): OutputChannel; /** * Set a message to the status bar. This is a short hand for the more powerful diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index 5f8dda98c30..c2a236281e4 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -234,8 +234,8 @@ export class ExtHostAPIImplementation { setStatusBarMessage(text: string, timeoutOrThenable?: number | Thenable): vscode.Disposable { return extHostStatusBar.setStatusBarMessage(text, timeoutOrThenable); }, - createOutputChannel(name: string): vscode.OutputChannel { - return extHostOutputService.createOutputChannel(name); + createOutputChannel(name: string, label?: string): vscode.OutputChannel { + return extHostOutputService.createOutputChannel(name, label); } }; diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 9dca2e375ba..1d9cd3bb9d3 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -13,35 +13,35 @@ import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/edito export class ExtHostOutputChannel implements vscode.OutputChannel { private _proxy: MainThreadOutputService; - private _name: string; + private _outputChannel: IOutputChannel; private _disposed: boolean; - constructor(name: string, proxy: MainThreadOutputService) { - this._name = name; + constructor(name: string, proxy: MainThreadOutputService, label?: string) { this._proxy = proxy; + this._outputChannel = proxy.getOutputChannel(name, label); } get name(): string { - return this._name; + return this._outputChannel.id; } dispose(): void { if (!this._disposed) { - this._proxy.getOutputChannel(this._name).clear(); + this._outputChannel.clear(); this._disposed = true; } } append(value: string): void { - this._proxy.getOutputChannel(this._name).append(value); + this._outputChannel.append(value); } appendLine(value: string): void { - this._proxy.getOutputChannel(this._name).append(value + '\n'); + this._outputChannel.append(value + '\n'); } clear(): void { - this._proxy.getOutputChannel(this._name).clear(); + this._outputChannel.clear(); } show(columnOrPreserveFocus?: vscode.ViewColumn | boolean, preserveFocus?: boolean): void { @@ -49,11 +49,11 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { preserveFocus = columnOrPreserveFocus; } - this._proxy.getOutputChannel(this._name).show(preserveFocus); + this._outputChannel.show(preserveFocus); } hide(): void { - this._proxy.close(this._name); + this._proxy.close(this._outputChannel.id); } } @@ -65,12 +65,12 @@ export class ExtHostOutputService { this._proxy = threadService.getRemotable(MainThreadOutputService); } - createOutputChannel(name: string): vscode.OutputChannel { + createOutputChannel(name: string, label?: string): vscode.OutputChannel { name = name.trim(); if (!name) { throw new Error('illegal argument `name`. must not be falsy'); } else { - return new ExtHostOutputChannel(name, this._proxy); + return new ExtHostOutputChannel(name, this._proxy, label); } } } @@ -86,8 +86,8 @@ export class MainThreadOutputService { this._editorService = editorService; } - public getOutputChannel(channelId): IOutputChannel { - return this._outputService.getChannel(channelId); + public getOutputChannel(channelId: string, channelLabel?: string): IOutputChannel { + return this._outputService.getChannel(channelId, channelLabel); } public close(channel: string): TPromise { diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 6c9fc50678b..4bdf301efa9 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -56,9 +56,9 @@ export interface IOutputService { /** * Given the channel id returns the output channel instance. - * Returns null if output channel with id is not registered. + * If label is passed then the output channel registry is not queried for the label of the channel. */ - getChannel(id: string): IOutputChannel; + getChannel(id: string, label?: string): IOutputChannel; /** * Returns the currently active channel. diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 3c9ca6f9b80..7d6506fefd9 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -60,16 +60,17 @@ export class OutputService implements IOutputService { return this._onActiveOutputChannel.event; } - public getChannel(id: string): IOutputChannel { - const channelData = Registry.as(Extensions.OutputChannels).getChannels().filter(channelData => channelData.id === id).pop(); - if (!channelData) { - return null; + public getChannel(id: string, label?: string): IOutputChannel { + if (!label ) { + const channelData = Registry.as(Extensions.OutputChannels).getChannels().filter(channelData => channelData.id === id).pop(); + // If channel is not registered use the id as the label (extensions do not register output channels via registry) + label = channelData ? channelData.label : id; } const self = this; return { id, - label: channelData.label, + label, get output() { return self.getOutput(id); }, From 1e590fb634aeee48c889bcb0edcda8e6e616db2c Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 14 Apr 2016 16:17:17 +0200 Subject: [PATCH 109/117] output: fix extensions output channel --- .../api/node/extHostOutputService.ts | 77 +++++++++++++------ .../workbench/parts/output/common/output.ts | 4 +- .../parts/output/common/outputServices.ts | 10 +-- 3 files changed, 57 insertions(+), 34 deletions(-) diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 1d9cd3bb9d3..e30f2d1e047 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -5,43 +5,47 @@ 'use strict'; import {TPromise} from 'vs/base/common/winjs.base'; -import {onUnexpectedError} from 'vs/base/common/errors'; import {Remotable, IThreadService} from 'vs/platform/thread/common/thread'; -import {IOutputService, OUTPUT_EDITOR_INPUT_ID, IOutputChannel} from 'vs/workbench/parts/output/common/output'; -import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService'; +import {Registry} from 'vs/platform/platform'; +import {IOutputService, IOutputChannel, OUTPUT_PANEL_ID, Extensions, IOutputChannelRegistry} from 'vs/workbench/parts/output/common/output'; +import {IPartService} from 'vs/workbench/services/part/common/partService'; +import {IPanelService} from 'vs/workbench/services/panel/common/panelService'; export class ExtHostOutputChannel implements vscode.OutputChannel { private _proxy: MainThreadOutputService; - private _outputChannel: IOutputChannel; + private _name: string; + private _label: string; private _disposed: boolean; constructor(name: string, proxy: MainThreadOutputService, label?: string) { + this._name = name; + this._label = label; this._proxy = proxy; - this._outputChannel = proxy.getOutputChannel(name, label); } get name(): string { - return this._outputChannel.id; + return this._name; } dispose(): void { if (!this._disposed) { - this._outputChannel.clear(); - this._disposed = true; + this._proxy.clear(this._name).then(() => { + this._disposed = true; + }); } } append(value: string): void { - this._outputChannel.append(value); + this._proxy.append(this._name, this._label, value); } appendLine(value: string): void { - this._outputChannel.append(value + '\n'); + this.append(value + '\n'); } clear(): void { - this._outputChannel.clear(); + this._proxy.clear(this._name); } show(columnOrPreserveFocus?: vscode.ViewColumn | boolean, preserveFocus?: boolean): void { @@ -49,11 +53,11 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { preserveFocus = columnOrPreserveFocus; } - this._outputChannel.show(preserveFocus); + this._proxy.reveal(this._name, preserveFocus); } hide(): void { - this._proxy.close(this._outputChannel.id); + this._proxy.close(this._name); } } @@ -79,24 +83,47 @@ export class ExtHostOutputService { export class MainThreadOutputService { private _outputService: IOutputService; - private _editorService: IWorkbenchEditorService; + private _partService: IPartService; + private _panelService: IPanelService; - constructor( @IOutputService outputService: IOutputService, @IWorkbenchEditorService editorService: IWorkbenchEditorService) { + constructor(@IOutputService outputService: IOutputService, + @IPartService partService: IPartService, + @IPanelService panelService: IPanelService + ) { this._outputService = outputService; - this._editorService = editorService; + this._partService = partService; + this._panelService = panelService; } - public getOutputChannel(channelId: string, channelLabel?: string): IOutputChannel { - return this._outputService.getChannel(channelId, channelLabel); + public append(channelId: string, label: string, value: string): TPromise { + this._getChannel(channelId, label).append(value); + return undefined; } - public close(channel: string): TPromise { - let editors = this._editorService.getVisibleEditors(); - for (let editor of editors) { - if (editor.input.getId() === OUTPUT_EDITOR_INPUT_ID) { - this._editorService.closeEditor(editor).done(null, onUnexpectedError); - return undefined; - } + public clear(channelId: string): TPromise { + this._getChannel(channelId).clear(); + return undefined; + } + + public reveal(channelId: string, preserveFocus: boolean): TPromise { + this._getChannel(channelId).show(preserveFocus); + return undefined; + } + + private _getChannel(channelId: string, label?: string): IOutputChannel { + if (!Registry.as(Extensions.OutputChannels).getChannels().some(channel => channel.id === channelId)) { + Registry.as(Extensions.OutputChannels).registerChannel(channelId, label || channelId); } + + return this._outputService.getChannel(channelId); + } + + public close(channelId: string): TPromise { + const panel = this._panelService.getActivePanel(); + if (panel && panel.getId() === OUTPUT_PANEL_ID && channelId === this._outputService.getActiveChannel().id ) { + this._partService.setPanelHidden(true); + } + + return undefined; } } diff --git a/src/vs/workbench/parts/output/common/output.ts b/src/vs/workbench/parts/output/common/output.ts index 4bdf301efa9..73d0fda4f93 100644 --- a/src/vs/workbench/parts/output/common/output.ts +++ b/src/vs/workbench/parts/output/common/output.ts @@ -56,9 +56,9 @@ export interface IOutputService { /** * Given the channel id returns the output channel instance. - * If label is passed then the output channel registry is not queried for the label of the channel. + * Channel should be first registered via OutputChannelRegistry. */ - getChannel(id: string, label?: string): IOutputChannel; + getChannel(id: string): IOutputChannel; /** * Returns the currently active channel. diff --git a/src/vs/workbench/parts/output/common/outputServices.ts b/src/vs/workbench/parts/output/common/outputServices.ts index 7d6506fefd9..40184e873c9 100644 --- a/src/vs/workbench/parts/output/common/outputServices.ts +++ b/src/vs/workbench/parts/output/common/outputServices.ts @@ -60,17 +60,13 @@ export class OutputService implements IOutputService { return this._onActiveOutputChannel.event; } - public getChannel(id: string, label?: string): IOutputChannel { - if (!label ) { - const channelData = Registry.as(Extensions.OutputChannels).getChannels().filter(channelData => channelData.id === id).pop(); - // If channel is not registered use the id as the label (extensions do not register output channels via registry) - label = channelData ? channelData.label : id; - } + public getChannel(id: string): IOutputChannel { + const channelData = Registry.as(Extensions.OutputChannels).getChannels().filter(channelData => channelData.id === id).pop(); const self = this; return { id, - label, + label: channelData ? channelData.label : id, get output() { return self.getOutput(id); }, From 806fcf3e676363165ce5744121bc9d119ddf9f4e Mon Sep 17 00:00:00 2001 From: isidor Date: Thu, 14 Apr 2016 16:51:02 +0200 Subject: [PATCH 110/117] output: do not surface output id to extension api --- src/vs/vscode.d.ts | 6 ++-- src/vs/workbench/api/node/extHost.api.impl.ts | 4 +-- .../api/node/extHostOutputService.ts | 35 ++++++++++--------- 3 files changed, 22 insertions(+), 23 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 03d1c020c35..ec8aa7ffa99 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -3084,11 +3084,9 @@ declare namespace vscode { /** * Create a new [output channel](#OutputChannel) with the given name. * - * @param name used as an identifier of the channel. - * @param label Human-readable string which will be used to represent the channel in the UI. - * If not specified name will be used for representing the channel in the UI. + * @param name Human-readable string which will be used to represent the channel in the UI. */ - export function createOutputChannel(name: string, label?: string): OutputChannel; + export function createOutputChannel(name: string): OutputChannel; /** * Set a message to the status bar. This is a short hand for the more powerful diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index c2a236281e4..5f8dda98c30 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -234,8 +234,8 @@ export class ExtHostAPIImplementation { setStatusBarMessage(text: string, timeoutOrThenable?: number | Thenable): vscode.Disposable { return extHostStatusBar.setStatusBarMessage(text, timeoutOrThenable); }, - createOutputChannel(name: string, label?: string): vscode.OutputChannel { - return extHostOutputService.createOutputChannel(name, label); + createOutputChannel(name: string): vscode.OutputChannel { + return extHostOutputService.createOutputChannel(name); } }; diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index e30f2d1e047..dc2fc973e08 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -5,6 +5,7 @@ 'use strict'; import {TPromise} from 'vs/base/common/winjs.base'; +import uuid = require('vs/base/common/uuid'); import {Remotable, IThreadService} from 'vs/platform/thread/common/thread'; import {Registry} from 'vs/platform/platform'; import {IOutputService, IOutputChannel, OUTPUT_PANEL_ID, Extensions, IOutputChannelRegistry} from 'vs/workbench/parts/output/common/output'; @@ -15,12 +16,12 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { private _proxy: MainThreadOutputService; private _name: string; - private _label: string; + private _id: string; private _disposed: boolean; - constructor(name: string, proxy: MainThreadOutputService, label?: string) { + constructor(name: string, proxy: MainThreadOutputService) { this._name = name; - this._label = label; + this._id = uuid.generateUuid(); this._proxy = proxy; } @@ -30,14 +31,14 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { dispose(): void { if (!this._disposed) { - this._proxy.clear(this._name).then(() => { + this._proxy.clear(this._id, this._name).then(() => { this._disposed = true; }); } } append(value: string): void { - this._proxy.append(this._name, this._label, value); + this._proxy.append(this._id, this._name, value); } appendLine(value: string): void { @@ -45,7 +46,7 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { } clear(): void { - this._proxy.clear(this._name); + this._proxy.clear(this._id, this._name); } show(columnOrPreserveFocus?: vscode.ViewColumn | boolean, preserveFocus?: boolean): void { @@ -53,11 +54,11 @@ export class ExtHostOutputChannel implements vscode.OutputChannel { preserveFocus = columnOrPreserveFocus; } - this._proxy.reveal(this._name, preserveFocus); + this._proxy.reveal(this._id, this._name, preserveFocus); } hide(): void { - this._proxy.close(this._name); + this._proxy.close(this._id); } } @@ -69,12 +70,12 @@ export class ExtHostOutputService { this._proxy = threadService.getRemotable(MainThreadOutputService); } - createOutputChannel(name: string, label?: string): vscode.OutputChannel { + createOutputChannel(name: string): vscode.OutputChannel { name = name.trim(); if (!name) { throw new Error('illegal argument `name`. must not be falsy'); } else { - return new ExtHostOutputChannel(name, this._proxy, label); + return new ExtHostOutputChannel(name, this._proxy); } } } @@ -100,19 +101,19 @@ export class MainThreadOutputService { return undefined; } - public clear(channelId: string): TPromise { - this._getChannel(channelId).clear(); + public clear(channelId: string, label: string): TPromise { + this._getChannel(channelId, label).clear(); return undefined; } - public reveal(channelId: string, preserveFocus: boolean): TPromise { - this._getChannel(channelId).show(preserveFocus); + public reveal(channelId: string, label: string, preserveFocus: boolean): TPromise { + this._getChannel(channelId, label).show(preserveFocus); return undefined; } - private _getChannel(channelId: string, label?: string): IOutputChannel { - if (!Registry.as(Extensions.OutputChannels).getChannels().some(channel => channel.id === channelId)) { - Registry.as(Extensions.OutputChannels).registerChannel(channelId, label || channelId); + private _getChannel(channelId: string, label: string): IOutputChannel { + if (Registry.as(Extensions.OutputChannels).getChannels().every(channel => channel.id !== channelId)) { + Registry.as(Extensions.OutputChannels).registerChannel(channelId, label); } return this._outputService.getChannel(channelId); From 86629bc930cf526ac1ad01e05bad0b80ceb1ec93 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Apr 2016 17:11:24 +0200 Subject: [PATCH 111/117] webview sits at its position in dom free. fixes #5039 and many other issue wrt to layout, editor dragging etc... --- .../parts/html/browser/htmlPreviewPart.ts | 38 +++++++++---------- .../workbench/parts/html/browser/webview.html | 10 +---- 2 files changed, 21 insertions(+), 27 deletions(-) diff --git a/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts b/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts index 136f42c989a..1e3cbfdb58b 100644 --- a/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts +++ b/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts @@ -63,11 +63,11 @@ class ManagedWebview { private _ready: TPromise; private _disposables: IDisposable[]; - constructor(private _parent: HTMLElement, private _layoutParent: HTMLElement, private _styleElement, onDidClickLink:(uri:URI)=>any) { + constructor(private _parent: HTMLElement, private _styleElement: Element, onDidClickLink:(uri:URI)=>any) { this._webview = document.createElement('webview'); - this._webview.style.zIndex = '1'; - this._webview.style.position = 'absolute'; - this._webview.style.left = '-1e10px'; // visible but far away + + this._webview.style.width = '100%'; + this._webview.style.height = '100%'; this._webview.autoSize = 'on'; this._webview.nodeintegration = 'on'; this._webview.src = require.toUrl('./webview.html'); @@ -124,16 +124,6 @@ class ManagedWebview { this._send('focus'); } - layout(): void { - const {top, left, width, height} = this._layoutParent.getBoundingClientRect(); - this._webview.style.top = `${top}px`; - this._webview.style.left = `${left}px`; - this._webview.style.width = `${width}px`; - this._webview.style.height = `${height}px`; - - this._send('layout', width, height); - } - style(themeId: string): void { const {color, backgroundColor, fontFamily, fontSize} = window.getComputedStyle(this._styleElement); @@ -240,8 +230,7 @@ export class HtmlPreviewPart extends BaseEditor { private get webview(): ManagedWebview { if (!this._webview) { - this._webview = new ManagedWebview(document.getElementById('workbench.main.container'), - this._container, + this._webview = new ManagedWebview(this._container, document.querySelector('.monaco-editor-background'), uri => this._openerService.open(uri)); @@ -250,7 +239,21 @@ export class HtmlPreviewPart extends BaseEditor { return this._webview; } + public changePosition(position: Position): void { + // what this actually means is that we got reparented. that + // has caused the webview to stop working and we need to reset it + this._doSetVisible(false); + this._doSetVisible(true); + + super.changePosition(position); + } + public setVisible(visible: boolean, position?: Position): TPromise { + this._doSetVisible(visible); + return super.setVisible(visible, position); + } + + private _doSetVisible(visible: boolean):void { if (!visible) { this._themeChangeSubscription.dispose(); this._modelChangeSubscription.dispose(); @@ -259,21 +262,18 @@ export class HtmlPreviewPart extends BaseEditor { } else { this._themeChangeSubscription = this._themeService.onDidThemeChange(themeId => this.webview.style(themeId)); this.webview.style(this._themeService.getTheme()); - this.webview.layout(); if (this._model) { this._modelChangeSubscription = this._model.addListener2(EventType.ModelContentChanged2, () => this.webview.contents = this._model.getLinesContent()); this.webview.contents = this._model.getLinesContent(); } } - return super.setVisible(visible, position); } public layout(dimension: Dimension): void { const {width, height} = dimension; this._container.style.width = `${width}px`; this._container.style.height = `${height}px`; - this.webview.layout(); } public focus(): void { diff --git a/src/vs/workbench/parts/html/browser/webview.html b/src/vs/workbench/parts/html/browser/webview.html index 465b1faf6af..2d445b5c6cb 100644 --- a/src/vs/workbench/parts/html/browser/webview.html +++ b/src/vs/workbench/parts/html/browser/webview.html @@ -4,8 +4,8 @@ Virtual Document - - + +